Version Description
- Added Invisible reCAPTCHA support for both PB forms as well as default WordPress forms
- Small CSS modification in role editor
- Fixing some CSS issues with notifications class on some pages and addon pages
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 2.7.7 |
Comparing to | |
See all releases |
Code changes from version 2.7.6 to 2.7.7
- admin/basic-info.php +1 -1
- admin/manage-fields.php +1 -0
- admin/register-version.php +1 -1
- assets/css/style-front-end.css +5 -2
- assets/js/jquery-manage-fields-live-change.js +1 -0
- assets/lib/wck-api/wordpress-creation-kit.php +2 -2
- features/functions.php +10 -2
- features/roles-editor/assets/css/roles-editor.css +4 -0
- features/roles-editor/roles-editor.php +1 -1
- features/upgrades/upgrades-functions.php +1 -0
- front-end/default-fields/recaptcha/recaptcha.php +191 -87
- index.php +3 -3
- readme.txt +6 -1
- translation/profile-builder.catalog.php +1602 -0
- translation/profile-builder.pot +6508 -5993
admin/basic-info.php
CHANGED
@@ -27,7 +27,7 @@ function wppb_basic_info_content() {
|
|
27 |
?>
|
28 |
<div class="wrap wppb-wrap wppb-info-wrap">
|
29 |
<div class="wppb-badge <?php echo $version; ?>"><span><?php printf( __( 'Version %s' ), PROFILE_BUILDER_VERSION ); ?></span></div>
|
30 |
-
<h1><?php
|
31 |
<p class="wppb-info-text"><?php printf( __( 'The best way to add front-end registration, edit profile and login forms.', 'profile-builder' ) ); ?></p>
|
32 |
<hr />
|
33 |
<h2 class="wppb-callout"><?php _e( 'For Modern User Interaction', 'profile-builder' ); ?></h2>
|
27 |
?>
|
28 |
<div class="wrap wppb-wrap wppb-info-wrap">
|
29 |
<div class="wppb-badge <?php echo $version; ?>"><span><?php printf( __( 'Version %s' ), PROFILE_BUILDER_VERSION ); ?></span></div>
|
30 |
+
<h1><?php printf( __( '<strong>Profile Builder </strong> %s', 'profile-builder' ), $version ); ?></h1>
|
31 |
<p class="wppb-info-text"><?php printf( __( 'The best way to add front-end registration, edit profile and login forms.', 'profile-builder' ) ); ?></p>
|
32 |
<hr />
|
33 |
<h2 class="wppb-callout"><?php _e( 'For Modern User Interaction', 'profile-builder' ); ?></h2>
|
admin/manage-fields.php
CHANGED
@@ -138,6 +138,7 @@ function wppb_populate_manage_fields(){
|
|
138 |
array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>', 'profile-builder' ) ),
|
139 |
array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profile-builder' ) ),
|
140 |
array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profile-builder' ) ),
|
|
|
141 |
array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( 'Site Key', 'profile-builder' ), 'description' => __( 'The site key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profile-builder' ) ),
|
142 |
array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( 'Secret Key', 'profile-builder' ), 'description' => __( 'The secret key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profile-builder' ) ),
|
143 |
array( 'type' => 'checkbox', 'slug' => 'captcha-pb-forms', 'title' => __( 'Display on PB forms', 'profile-builder' ), 'options' => array( '%'.__('PB Login','profile-builder').'%'.'pb_login', '%'.__('PB Register','profile-builder').'%'.'pb_register', '%'.__('PB Recover Password','profile-builder').'%'.'pb_recover_password' ), 'default' => 'pb_register', 'description' => __( "Select on which Profile Builder forms to display reCAPTCHA", 'profile-builder' ) ),
|
138 |
array( 'type' => 'textarea', 'slug' => 'terms-of-agreement', 'title' => __( 'Terms of Agreement', 'profile-builder' ), 'description' => __( 'Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href="custom_url">custom_text</a>', 'profile-builder' ) ),
|
139 |
array( 'type' => 'text', 'slug' => 'options', 'title' => __( 'Options', 'profile-builder' ), 'description' => __( "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", 'profile-builder' ) ),
|
140 |
array( 'type' => 'text', 'slug' => 'labels', 'title' => __( 'Labels', 'profile-builder' ), 'description' => __( "Enter a comma separated list of labels<br/>Visible for the user", 'profile-builder' ) ),
|
141 |
+
array( 'type' => 'select', 'slug' => 'recaptcha-type', 'title' => __( 'reCAPTCHA Type', 'profile-builder' ), 'options' => array('%reCAPTCHA V2%v2', '%Invisible reCAPTCHA%invisible'), 'default' => 'v2', 'description' => __( 'Choose the <a href="https://developers.google.com/recaptcha/docs/versions" target="_blank">type of reCAPTCHA</a> you wish to add to this site.', 'profile-builder' ) ),
|
142 |
array( 'type' => 'text', 'slug' => 'public-key', 'title' => __( 'Site Key', 'profile-builder' ), 'description' => __( 'The site key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profile-builder' ) ),
|
143 |
array( 'type' => 'text', 'slug' => 'private-key', 'title' => __( 'Secret Key', 'profile-builder' ), 'description' => __( 'The secret key from Google, <a href="http://www.google.com/recaptcha" target="_blank">www.google.com/recaptcha</a>', 'profile-builder' ) ),
|
144 |
array( 'type' => 'checkbox', 'slug' => 'captcha-pb-forms', 'title' => __( 'Display on PB forms', 'profile-builder' ), 'options' => array( '%'.__('PB Login','profile-builder').'%'.'pb_login', '%'.__('PB Register','profile-builder').'%'.'pb_register', '%'.__('PB Recover Password','profile-builder').'%'.'pb_recover_password' ), 'default' => 'pb_register', 'description' => __( "Select on which Profile Builder forms to display reCAPTCHA", 'profile-builder' ) ),
|
admin/register-version.php
CHANGED
@@ -58,7 +58,7 @@ function wppb_register_your_version_content() {
|
|
58 |
function wppb_serial_form($version, $fullname){
|
59 |
?>
|
60 |
|
61 |
-
<h2><?php
|
62 |
|
63 |
<form method="post" action="<?php echo get_admin_url( 1, 'options.php' ) ?>">
|
64 |
|
58 |
function wppb_serial_form($version, $fullname){
|
59 |
?>
|
60 |
|
61 |
+
<h2><?php printf( __( "Register your version of %s", 'profile-builder' ), $fullname ); ?></h2>
|
62 |
|
63 |
<form method="post" action="<?php echo get_admin_url( 1, 'options.php' ) ?>">
|
64 |
|
assets/css/style-front-end.css
CHANGED
@@ -296,10 +296,13 @@ input#send_credentials_via_email{
|
|
296 |
}
|
297 |
|
298 |
|
299 |
-
.
|
300 |
display: inline-block;
|
301 |
}
|
302 |
-
.
|
|
|
|
|
|
|
303 |
margin-bottom: 0;
|
304 |
}
|
305 |
|
296 |
}
|
297 |
|
298 |
|
299 |
+
.wppb-recaptcha-element{
|
300 |
display: inline-block;
|
301 |
}
|
302 |
+
.wppb-recaptcha-element.wppb-invisible-recaptcha {
|
303 |
+
display: block !important;
|
304 |
+
}
|
305 |
+
.wppb-recaptcha-element iframe{
|
306 |
margin-bottom: 0;
|
307 |
}
|
308 |
|
assets/js/jquery-manage-fields-live-change.js
CHANGED
@@ -437,6 +437,7 @@ var fields = {
|
|
437 |
'reCAPTCHA': { 'show_rows' : [
|
438 |
'.row-field-title',
|
439 |
'.row-description',
|
|
|
440 |
'.row-public-key',
|
441 |
'.row-private-key',
|
442 |
'.row-captcha-pb-forms',
|
437 |
'reCAPTCHA': { 'show_rows' : [
|
438 |
'.row-field-title',
|
439 |
'.row-description',
|
440 |
+
'.row-recaptcha-type',
|
441 |
'.row-public-key',
|
442 |
'.row-private-key',
|
443 |
'.row-captcha-pb-forms',
|
assets/lib/wck-api/wordpress-creation-kit.php
CHANGED
@@ -391,8 +391,8 @@ class Wordpress_Creation_Kit_PB{
|
|
391 |
}
|
392 |
}
|
393 |
$form .= '<li style="overflow:visible;">';
|
394 |
-
$form .= '<a href="javascript:void(0)" class="button-primary" onclick=\'updateMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($update_nonce).'")\'><span>'.
|
395 |
-
$form .= '<a href="javascript:void(0)" class="button-secondary" style="margin-left:10px;" onclick=\'removeUpdateForm("'. esc_js( 'update_container_'.$meta.'_'.$element_id ). '" )\'><span>'.
|
396 |
$form .= '</li>';
|
397 |
|
398 |
$form .= '</ul>';
|
391 |
}
|
392 |
}
|
393 |
$form .= '<li style="overflow:visible;">';
|
394 |
+
$form .= '<a href="javascript:void(0)" class="button-primary" onclick=\'updateMeta("'.esc_js($meta).'", "'.esc_js($id).'", "'.esc_js($element_id).'", "'.esc_js($update_nonce).'")\'><span>'. apply_filters( 'wck_save_changes_button', __( 'Save Changes', 'profile-builder' ), $meta ) .'</span></a>';
|
395 |
+
$form .= '<a href="javascript:void(0)" class="button-secondary" style="margin-left:10px;" onclick=\'removeUpdateForm("'. esc_js( 'update_container_'.$meta.'_'.$element_id ). '" )\'><span>'. apply_filters( 'wck_cancel_button', __( 'Cancel', 'profile-builder' ), $meta ) .'</span></a>';
|
396 |
$form .= '</li>';
|
397 |
|
398 |
$form .= '</ul>';
|
features/functions.php
CHANGED
@@ -260,11 +260,16 @@ function wppb_print_cpt_script( $hook ){
|
|
260 |
( $hook == 'profile-builder_page_profile-builder-register' ) ||
|
261 |
( $hook == 'profile-builder_page_profile-builder-wppb_userListing' ) ||
|
262 |
( $hook == 'profile-builder_page_custom-redirects' ) ||
|
263 |
-
( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizer' )
|
264 |
-
( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizerAdmin' )
|
265 |
( $hook == 'profile-builder_page_profile-builder-add-ons' ) ||
|
266 |
( $hook == 'profile-builder_page_profile-builder-woocommerce-sync' ) ||
|
267 |
( $hook == 'profile-builder_page_profile-builder-bbpress') ||
|
|
|
|
|
|
|
|
|
|
|
268 |
( $hook == 'admin_page_profile-builder-pms-promo') ) {
|
269 |
wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION );
|
270 |
}
|
@@ -290,6 +295,9 @@ function wppb_print_cpt_script( $hook ){
|
|
290 |
wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION );
|
291 |
wp_enqueue_script( 'wppb-epf-rf', WPPB_PLUGIN_URL . 'assets/js/jquery-epf-rf.js', array(), PROFILE_BUILDER_VERSION, true );
|
292 |
}
|
|
|
|
|
|
|
293 |
}
|
294 |
if ( file_exists ( WPPB_PLUGIN_DIR.'/update/update-checker.php' ) ) {
|
295 |
wp_enqueue_script( 'wppb-sitewide', WPPB_PLUGIN_URL . 'assets/js/jquery-pb-sitewide.js', array(), PROFILE_BUILDER_VERSION, true );
|
260 |
( $hook == 'profile-builder_page_profile-builder-register' ) ||
|
261 |
( $hook == 'profile-builder_page_profile-builder-wppb_userListing' ) ||
|
262 |
( $hook == 'profile-builder_page_custom-redirects' ) ||
|
263 |
+
( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizer' ) ||//?what is this
|
264 |
+
( $hook == 'profile-builder_page_profile-builder-wppb_emailCustomizerAdmin' ) ||//?what is this
|
265 |
( $hook == 'profile-builder_page_profile-builder-add-ons' ) ||
|
266 |
( $hook == 'profile-builder_page_profile-builder-woocommerce-sync' ) ||
|
267 |
( $hook == 'profile-builder_page_profile-builder-bbpress') ||
|
268 |
+
( $hook == 'profile-builder_page_admin-email-customizer') ||
|
269 |
+
( $hook == 'profile-builder_page_user-email-customizer') ||
|
270 |
+
( $hook == 'profile-builder_page_profile-builder-content_restriction' ) ||
|
271 |
+
( strpos( $hook, 'profile-builder_page_' ) === 0 ) ||
|
272 |
+
( $hook == 'edit.php' && $_GET['post_type'] == 'wppb-roles-editor' ) ||
|
273 |
( $hook == 'admin_page_profile-builder-pms-promo') ) {
|
274 |
wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION );
|
275 |
}
|
295 |
wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', false, PROFILE_BUILDER_VERSION );
|
296 |
wp_enqueue_script( 'wppb-epf-rf', WPPB_PLUGIN_URL . 'assets/js/jquery-epf-rf.js', array(), PROFILE_BUILDER_VERSION, true );
|
297 |
}
|
298 |
+
else if( 'wppb-roles-editor' == $post_type ){
|
299 |
+
wp_enqueue_style( 'wppb-back-end-style', WPPB_PLUGIN_URL . 'assets/css/style-back-end.css', array(), PROFILE_BUILDER_VERSION );
|
300 |
+
}
|
301 |
}
|
302 |
if ( file_exists ( WPPB_PLUGIN_DIR.'/update/update-checker.php' ) ) {
|
303 |
wp_enqueue_script( 'wppb-sitewide', WPPB_PLUGIN_URL . 'assets/js/jquery-pb-sitewide.js', array(), PROFILE_BUILDER_VERSION, true );
|
features/roles-editor/assets/css/roles-editor.css
CHANGED
@@ -72,6 +72,10 @@
|
|
72 |
width: 25%;
|
73 |
}
|
74 |
|
|
|
|
|
|
|
|
|
75 |
.post-type-wppb-roles-editor .column-capabilities {
|
76 |
width: 15%;
|
77 |
text-align: center;
|
72 |
width: 25%;
|
73 |
}
|
74 |
|
75 |
+
.post-type-wppb-roles-editor .column-role .wppb-role-slug-input{
|
76 |
+
width:90%;
|
77 |
+
}
|
78 |
+
|
79 |
.post-type-wppb-roles-editor .column-capabilities {
|
80 |
width: 15%;
|
81 |
text-align: center;
|
features/roles-editor/roles-editor.php
CHANGED
@@ -67,7 +67,7 @@ class WPPB_Roles_Editor {
|
|
67 |
}
|
68 |
|
69 |
$wp_default_styles = $this->wp_default_styles();
|
70 |
-
$styles_exceptions = array( 'wppb-serial-notice-css', 'acf-global' );
|
71 |
foreach( $wp_styles->registered as $key => $value ) {
|
72 |
if( ! in_array( $key, $wp_default_styles ) && ! in_array( $key, $styles_exceptions ) ) {
|
73 |
wp_deregister_style( $key );
|
67 |
}
|
68 |
|
69 |
$wp_default_styles = $this->wp_default_styles();
|
70 |
+
$styles_exceptions = array( 'wppb-serial-notice-css', 'acf-global', 'wppb-back-end-style' );
|
71 |
foreach( $wp_styles->registered as $key => $value ) {
|
72 |
if( ! in_array( $key, $wp_default_styles ) && ! in_array( $key, $styles_exceptions ) ) {
|
73 |
wp_deregister_style( $key );
|
features/upgrades/upgrades-functions.php
CHANGED
@@ -177,6 +177,7 @@ function wppb_pro_hobbyist_free_v2_0(){
|
|
177 |
$local_array['terms-of-agreement'] = '';
|
178 |
$local_array['options'] = '';
|
179 |
$local_array['labels'] = '';
|
|
|
180 |
$local_array['public-key'] = '';
|
181 |
$local_array['private-key'] = '';
|
182 |
$local_array['default-value'] = '';
|
177 |
$local_array['terms-of-agreement'] = '';
|
178 |
$local_array['options'] = '';
|
179 |
$local_array['labels'] = '';
|
180 |
+
$local_array['recaptcha-type'] = 'v2';
|
181 |
$local_array['public-key'] = '';
|
182 |
$local_array['private-key'] = '';
|
183 |
$local_array['default-value'] = '';
|
front-end/default-fields/recaptcha/recaptcha.php
CHANGED
@@ -42,72 +42,114 @@ function _wppb_submitHTTPGet($path, $data)
|
|
42 |
* @return string - The HTML to be embedded in the user's form.
|
43 |
*/
|
44 |
function wppb_recaptcha_get_html ( $pubkey, $form_name='' ){
|
45 |
-
global $wppb_recaptcha_forms; //
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
if ( empty($pubkey) )
|
48 |
echo $errorMessage = '<span class="error">'. __("To use reCAPTCHA you must get an API key from", "profile-builder"). " <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a></span><br/><br/>";
|
49 |
|
50 |
-
//
|
51 |
-
$
|
52 |
-
|
53 |
-
|
54 |
-
if ($wppb_recaptcha_forms != '') $wppb_recaptcha_forms .= ','.trim($form_name).$length;
|
55 |
-
else $wppb_recaptcha_forms = trim($form_name).$length;
|
56 |
-
|
57 |
-
// reCAPTCHA html for PB forms
|
58 |
-
return '
|
59 |
-
<div id="recaptcha_'.$form_name.$length.'" class="g-recaptcha" data-sitekey="'.$pubkey.'" data-theme="'.apply_filters('wppb_recaptcha_theme_select','light').'" ></div>
|
60 |
-
';
|
61 |
}
|
62 |
-
else { //reCAPTCHA html and scripts for default WP forms (backend)
|
63 |
-
return '
|
64 |
-
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
65 |
-
<div id="recaptcha_'.$form_name.$length.'" class="g-recaptcha" data-sitekey="'.$pubkey.'" data-theme="'.apply_filters('wppb_recaptcha_theme_select','light').'" ></div>
|
66 |
-
';
|
67 |
-
}
|
68 |
-
|
69 |
-
}
|
70 |
|
71 |
-
//
|
72 |
-
|
73 |
-
global $wppb_recaptcha_forms;
|
74 |
-
//initialize the $wppb_recaptcha_forms global var
|
75 |
-
$wppb_recaptcha_forms = '';
|
76 |
}
|
77 |
-
add_action('wp_head', 'wppb_recaptcha_script_header');
|
78 |
|
79 |
|
80 |
|
|
|
|
|
|
|
81 |
function wppb_recaptcha_script_footer(){
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
103 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
105 |
-
|
106 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
}
|
108 |
-
}
|
109 |
-
add_action('wp_footer','wppb_recaptcha_script_footer');
|
110 |
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
|
112 |
|
113 |
/**
|
@@ -133,7 +175,11 @@ function wppb_recaptcha_check_answer ( $privkey, $remoteip, $response ){
|
|
133 |
// Discard empty solution submissions
|
134 |
if ($response == null || strlen($response) == 0) {
|
135 |
$recaptchaResponse = new wppb_ReCaptchaResponse();
|
136 |
-
|
|
|
|
|
|
|
|
|
137 |
|
138 |
return $recaptchaResponse;
|
139 |
}
|
@@ -191,9 +237,16 @@ function wppb_recaptcha_handler ( $output, $form_location, $field, $user_id, $fi
|
|
191 |
if ( empty( $publickey ) || empty( $privatekey ) )
|
192 |
return '<span class="custom_field_recaptcha_error_message" id="'.$field['meta-name'].'_error_message">'.apply_filters( 'wppb_'.$form_location.'_recaptcha_custom_field_'.$field['id'].'_error_message', __("To use reCAPTCHA you must get an API public key from:", "profile-builder"). '<a href="https://www.google.com/recaptcha/admin/create">https://www.google.com/recaptcha/admin/create</a>' ).'</span>';
|
193 |
|
194 |
-
|
195 |
-
|
196 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
|
198 |
return $output;
|
199 |
|
@@ -207,7 +260,14 @@ add_filter( 'wppb_output_form_field_recaptcha', 'wppb_recaptcha_handler', 10, 6
|
|
207 |
function wppb_check_recaptcha_value( $message, $field, $request_data, $form_location ){
|
208 |
if( $field['field'] == 'reCAPTCHA' ){
|
209 |
if ( ( $form_location == 'register' ) && ( isset($field['captcha-pb-forms']) ) && (strpos($field['captcha-pb-forms'],'pb_register') !== false) ) {
|
210 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
return wppb_required_field_error($field["field-title"]);
|
212 |
}
|
213 |
}
|
@@ -238,13 +298,20 @@ function wppb_display_recaptcha_recover_password( $output ){
|
|
238 |
$item_title = apply_filters('wppb_recover_password_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title']));
|
239 |
$item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
|
240 |
|
241 |
-
// check where
|
242 |
if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_recover_password' ) !== false ) ) {
|
243 |
-
$recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey, 'pb_recover_password');
|
244 |
-
if (!empty($item_description))
|
245 |
-
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
246 |
|
247 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
}
|
249 |
}
|
250 |
return $output;
|
@@ -327,11 +394,18 @@ function wppb_display_recaptcha_login_form($form_part, $args) {
|
|
327 |
$item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
|
328 |
|
329 |
if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_login' ) !== false ) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
330 |
-
$recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html( trim($field['public-key']), 'pb_login' );
|
331 |
-
if (!empty($item_description))
|
332 |
-
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
333 |
|
334 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
}
|
336 |
}
|
337 |
|
@@ -349,11 +423,17 @@ function wppb_display_recaptcha_wp_login_form(){
|
|
349 |
|
350 |
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
351 |
|
352 |
-
|
353 |
-
|
354 |
-
|
|
|
355 |
|
356 |
-
|
|
|
|
|
|
|
|
|
|
|
357 |
}
|
358 |
}
|
359 |
}
|
@@ -367,16 +447,24 @@ function wppb_recaptcha_login_wp_error_message($user){
|
|
367 |
$field = wppb_get_recaptcha_field();
|
368 |
if ( !empty($field) ){
|
369 |
global $wppb_recaptcha_response;
|
|
|
370 |
if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) );
|
371 |
|
372 |
//reCAPTCHA error for displaying on the PB login form
|
373 |
-
if ( isset($_POST['wppb_login']) && ($_POST['wppb_login'] == true)
|
374 |
-
|
|
|
|
|
|
|
|
|
|
|
375 |
}
|
|
|
|
|
|
|
|
|
|
|
376 |
|
377 |
-
//reCAPTCHA error for displaying on the default WP login form
|
378 |
-
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) && ($wppb_recaptcha_response == false) ) {
|
379 |
-
$user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value','profile-builder'));
|
380 |
}
|
381 |
}
|
382 |
}
|
@@ -394,11 +482,18 @@ function wppb_display_recaptcha_default_wp_recover_password() {
|
|
394 |
$item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
|
395 |
|
396 |
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'], 'default_wp_recover_password') !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
397 |
-
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
|
398 |
-
if (!empty($item_description))
|
399 |
-
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
400 |
|
401 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
}
|
403 |
}
|
404 |
}
|
@@ -429,18 +524,26 @@ function wppb_display_recaptcha_default_wp_register(){
|
|
429 |
$field = wppb_get_recaptcha_field();
|
430 |
|
431 |
if (!empty($field)) {
|
432 |
-
$publickey = trim($field['public-key']);
|
433 |
-
$item_title = apply_filters('wppb_register_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title']));
|
434 |
-
$item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
|
435 |
|
436 |
-
|
437 |
-
|
438 |
-
$
|
439 |
-
if (!empty($item_description))
|
440 |
-
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
441 |
|
442 |
-
|
443 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
}
|
445 |
}
|
446 |
add_action( 'register_form', 'wppb_display_recaptcha_default_wp_register' );
|
@@ -463,7 +566,7 @@ return $errors;
|
|
463 |
}
|
464 |
add_filter('registration_errors','wppb_verify_recaptcha_default_wp_register');
|
465 |
|
466 |
-
// set default
|
467 |
function wppb_recaptcha_set_default_values() {
|
468 |
$manage_fields = get_option('wppb_manage_fields', 'not_set');
|
469 |
if ($manage_fields != 'not_set') {
|
@@ -471,6 +574,7 @@ function wppb_recaptcha_set_default_values() {
|
|
471 |
if ($value['field'] == 'reCAPTCHA') {
|
472 |
if ( !isset($value['captcha-pb-forms']) ) $manage_fields[$key]['captcha-pb-forms'] = 'pb_register';
|
473 |
if ( !isset($value['captcha-wp-forms']) ) $manage_fields[$key]['captcha-wp-forms'] = 'default_wp_register';
|
|
|
474 |
}
|
475 |
}
|
476 |
update_option('wppb_manage_fields', $manage_fields);
|
42 |
* @return string - The HTML to be embedded in the user's form.
|
43 |
*/
|
44 |
function wppb_recaptcha_get_html ( $pubkey, $form_name='' ){
|
45 |
+
global $wppb_recaptcha_forms; // is the counter for the number of forms that have recaptcha so we always have unique ids on the element
|
46 |
+
if( is_null( $wppb_recaptcha_forms ) )
|
47 |
+
$wppb_recaptcha_forms = 0;
|
48 |
+
$wppb_recaptcha_forms++;
|
49 |
+
|
50 |
+
$field = wppb_get_recaptcha_field();
|
51 |
|
52 |
if ( empty($pubkey) )
|
53 |
echo $errorMessage = '<span class="error">'. __("To use reCAPTCHA you must get an API key from", "profile-builder"). " <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a></span><br/><br/>";
|
54 |
|
55 |
+
// extra class needed for Invisible reCAPTCHA html
|
56 |
+
$invisible_class = '';
|
57 |
+
if ( isset($field['recaptcha-type']) && ($field['recaptcha-type'] == 'invisible') ) {
|
58 |
+
$invisible_class = 'wppb-invisible-recaptcha';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
|
61 |
+
// reCAPTCHA html for all forms and we make sure we have a unique id for v2
|
62 |
+
return '<div id="wppb-recaptcha-element-'.$form_name.$wppb_recaptcha_forms.'" class="wppb-recaptcha-element '.$invisible_class.'"></div>';
|
|
|
|
|
|
|
63 |
}
|
|
|
64 |
|
65 |
|
66 |
|
67 |
+
/**
|
68 |
+
* Add reCAPTCHA scripts to both front-end PB forms (with support for multiple forms) as well as Default WP forms
|
69 |
+
*/
|
70 |
function wppb_recaptcha_script_footer(){
|
71 |
+
|
72 |
+
//we don't have jquery on the backend
|
73 |
+
if( current_filter() != 'wp_footer' ) {
|
74 |
+
wp_print_scripts('jquery');
|
75 |
+
}
|
76 |
+
|
77 |
+
//get site key
|
78 |
+
$field = wppb_get_recaptcha_field();
|
79 |
+
$pubkey = '';
|
80 |
+
if( isset( $field['public-key'] ) ) {
|
81 |
+
$pubkey = trim( $field['public-key'] );
|
82 |
+
}
|
83 |
|
84 |
+
// Check if we have a reCAPTCHA type
|
85 |
+
if ( !isset($field['recaptcha-type']) )
|
86 |
+
return ;
|
87 |
+
|
88 |
+
/*for invisible recaptcha we have extra parameters and the selector is different. v2 is initialized on the id of the div
|
89 |
+
that must be unique and invisible is on the submit button of the forms that have the div */
|
90 |
+
if( $field['recaptcha-type'] === 'invisible' ) {
|
91 |
+
$callback_conditions = 'jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") )';
|
92 |
+
$invisible_parameters = '"callback" : wppbInvisibleRecaptchaOnSubmit,"size": "invisible"';
|
93 |
+
}else {
|
94 |
+
$callback_conditions = 'jQuery(".wppb-recaptcha-element")';
|
95 |
+
$invisible_parameters = '';
|
96 |
+
}
|
97 |
|
98 |
+
echo '<script>
|
99 |
+
var wppbRecaptchaCallback = function() {
|
100 |
+
if( typeof window.wppbRecaptchaCallbackExecuted == "undefined" ){//see if we executed this before
|
101 |
+
'.$callback_conditions.'.each(function(){
|
102 |
+
recID = grecaptcha.render( jQuery(this).attr("id"), {
|
103 |
+
"sitekey" : "' . $pubkey . '",
|
104 |
+
"error-callback": wppbRecaptchaInitializationError,
|
105 |
+
'.$invisible_parameters.'
|
106 |
+
});
|
107 |
+
});
|
108 |
+
window.wppbRecaptchaCallbackExecuted = true;//we use this to make sure we only run the callback once
|
109 |
}
|
110 |
+
};
|
111 |
+
|
112 |
+
/* the callback function for when the captcha does not load propperly, maybe network problem or wrong keys */
|
113 |
+
function wppbRecaptchaInitializationError(){
|
114 |
+
window.wppbRecaptchaInitError = true;
|
115 |
+
//add a captcha field so we do not just let the form submit if we do not have a captcha response
|
116 |
+
jQuery( ".wppb-recaptcha-element" ).after(\''. wp_nonce_field( 'wppb_recaptcha_init_error', 'wppb_recaptcha_load_error', false, false ) .'\');
|
117 |
}
|
118 |
+
|
119 |
+
/* compatibility with other plugins that may include recaptcha with an onload callback. if their script loads first then our callback will not execute so call it explicitly */
|
120 |
+
jQuery( window ).on( "load", function() {
|
121 |
+
wppbRecaptchaCallback();
|
122 |
+
});
|
123 |
+
</script>';
|
124 |
+
|
125 |
+
if( $field['recaptcha-type'] === 'invisible' ) {
|
126 |
+
echo '<script>
|
127 |
+
/* success callback for invisible recaptcha. it submits the form that contains the right token response */
|
128 |
+
function wppbInvisibleRecaptchaOnSubmit(token){
|
129 |
+
var elem = jQuery(".g-recaptcha-response").filter(function(){
|
130 |
+
return jQuery(this).val() === token;
|
131 |
+
});
|
132 |
+
var form = elem.closest("form");
|
133 |
+
form.submit();
|
134 |
+
}
|
135 |
+
|
136 |
+
/* make sure if the invisible recaptcha did not load properly ( network error or wrong keys ) we can still submit the form */
|
137 |
+
jQuery(document).ready(function(){
|
138 |
+
if( window.wppbRecaptchaInitError === true ){
|
139 |
+
jQuery("input[type=\'submit\']", jQuery( ".wppb-recaptcha-element" ).closest("form") ).click(function(e){
|
140 |
+
jQuery(this).closest("form").submit();
|
141 |
+
});
|
142 |
+
}
|
143 |
+
});
|
144 |
+
</script>';
|
145 |
}
|
|
|
|
|
146 |
|
147 |
+
echo '<script src="https://www.google.com/recaptcha/api.js?onload=wppbRecaptchaCallback&render=explicit" async defer></script>';
|
148 |
+
}
|
149 |
+
add_action('wp_footer', 'wppb_recaptcha_script_footer', 999);
|
150 |
+
add_action('login_footer', 'wppb_recaptcha_script_footer');
|
151 |
+
add_action('register_form', 'wppb_recaptcha_script_footer');
|
152 |
+
add_action('lost_password', 'wppb_recaptcha_script_footer');
|
153 |
|
154 |
|
155 |
/**
|
175 |
// Discard empty solution submissions
|
176 |
if ($response == null || strlen($response) == 0) {
|
177 |
$recaptchaResponse = new wppb_ReCaptchaResponse();
|
178 |
+
|
179 |
+
if( isset( $_POST['wppb_recaptcha_load_error'] ) && wp_verify_nonce( $_POST['wppb_recaptcha_load_error'], 'wppb_recaptcha_init_error' ) )
|
180 |
+
$recaptchaResponse->is_valid = true;
|
181 |
+
else
|
182 |
+
$recaptchaResponse->is_valid = false;
|
183 |
|
184 |
return $recaptchaResponse;
|
185 |
}
|
237 |
if ( empty( $publickey ) || empty( $privatekey ) )
|
238 |
return '<span class="custom_field_recaptcha_error_message" id="'.$field['meta-name'].'_error_message">'.apply_filters( 'wppb_'.$form_location.'_recaptcha_custom_field_'.$field['id'].'_error_message', __("To use reCAPTCHA you must get an API public key from:", "profile-builder"). '<a href="https://www.google.com/recaptcha/admin/create">https://www.google.com/recaptcha/admin/create</a>' ).'</span>';
|
239 |
|
240 |
+
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
241 |
+
$output = '<label for="recaptcha_response_field">' . $item_title . $error_mark . '</label>' . wppb_recaptcha_get_html($publickey, 'pb_register');
|
242 |
+
if (!empty($item_description))
|
243 |
+
$output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
244 |
+
}
|
245 |
+
else {
|
246 |
+
// html for Invisible reCAPTCHA
|
247 |
+
$output = wppb_recaptcha_get_html($publickey, 'pb_register');
|
248 |
+
}
|
249 |
+
|
250 |
|
251 |
return $output;
|
252 |
|
260 |
function wppb_check_recaptcha_value( $message, $field, $request_data, $form_location ){
|
261 |
if( $field['field'] == 'reCAPTCHA' ){
|
262 |
if ( ( $form_location == 'register' ) && ( isset($field['captcha-pb-forms']) ) && (strpos($field['captcha-pb-forms'],'pb_register') !== false) ) {
|
263 |
+
|
264 |
+
/* theme my login plugin executes the register_errors hook on the frontend on all pages so on our register forms we might have already a recaptcha response
|
265 |
+
so do not verify it again or it will fail */
|
266 |
+
global $wppb_recaptcha_response;
|
267 |
+
if (!isset($wppb_recaptcha_response)){
|
268 |
+
$wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) );
|
269 |
+
}
|
270 |
+
if ( ( $wppb_recaptcha_response == false ) && ( $field['required'] == 'Yes' ) ){
|
271 |
return wppb_required_field_error($field["field-title"]);
|
272 |
}
|
273 |
}
|
298 |
$item_title = apply_filters('wppb_recover_password_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title']));
|
299 |
$item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
|
300 |
|
301 |
+
// check where reCAPTCHA should display and add reCAPTCHA html
|
302 |
if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_recover_password' ) !== false ) ) {
|
|
|
|
|
|
|
303 |
|
304 |
+
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
305 |
+
$recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey, 'pb_recover_password');
|
306 |
+
if (!empty($item_description))
|
307 |
+
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
308 |
+
|
309 |
+
$output = str_replace('</ul>', '<li class="wppb-form-field wppb-recaptcha">' . $recaptcha_output . '</li>' . '</ul>', $output);
|
310 |
+
}
|
311 |
+
else {
|
312 |
+
// output Invisible reCAPTCHA html
|
313 |
+
$output = str_replace('</ul>', '<li class="wppb-form-field wppb-recaptcha">' . wppb_recaptcha_get_html($publickey, 'pb_recover_password') . '</li>' . '</ul>', $output);
|
314 |
+
}
|
315 |
}
|
316 |
}
|
317 |
return $output;
|
394 |
$item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
|
395 |
|
396 |
if ( isset($field['captcha-pb-forms']) && ( strpos( $field['captcha-pb-forms'],'pb_login' ) !== false ) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
|
|
|
|
|
|
397 |
|
398 |
+
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
399 |
+
$recaptcha_output = '<label for="recaptcha_response_field">' . $item_title . '</label>' . wppb_recaptcha_get_html(trim($field['public-key']), 'pb_login');
|
400 |
+
if (!empty($item_description))
|
401 |
+
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
402 |
+
|
403 |
+
$form_part .= '<div class="wppb-form-field wppb-recaptcha">' . $recaptcha_output . '</div>';
|
404 |
+
}
|
405 |
+
else {
|
406 |
+
//output Invisible reCAPTCHA html
|
407 |
+
$form_part .= wppb_recaptcha_get_html(trim($field['public-key']), 'pb_login');
|
408 |
+
}
|
409 |
}
|
410 |
}
|
411 |
|
423 |
|
424 |
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'],'default_wp_login' ) !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
425 |
|
426 |
+
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
427 |
+
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html(trim($field['public-key']));
|
428 |
+
if (!empty($item_description))
|
429 |
+
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
430 |
|
431 |
+
echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">' . $recaptcha_output . '</div>';
|
432 |
+
}
|
433 |
+
else {
|
434 |
+
// output Invisible reCAPTCHA html
|
435 |
+
echo wppb_recaptcha_get_html( trim($field['public-key']));
|
436 |
+
}
|
437 |
}
|
438 |
}
|
439 |
}
|
447 |
$field = wppb_get_recaptcha_field();
|
448 |
if ( !empty($field) ){
|
449 |
global $wppb_recaptcha_response;
|
450 |
+
|
451 |
if (!isset($wppb_recaptcha_response)) $wppb_recaptcha_response = wppb_validate_captcha_response( trim( $field['public-key'] ), trim( $field['private-key'] ) );
|
452 |
|
453 |
//reCAPTCHA error for displaying on the PB login form
|
454 |
+
if ( isset($_POST['wppb_login']) && ($_POST['wppb_login'] == true) ) {
|
455 |
+
|
456 |
+
// it's a PB login form, check if we have a reCAPTCHA on it and display error if not valid
|
457 |
+
if ((isset($field['captcha-pb-forms'])) && (strpos($field['captcha-pb-forms'], 'pb_login') !== false) && ($wppb_recaptcha_response == false)) {
|
458 |
+
$user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder'));
|
459 |
+
}
|
460 |
+
|
461 |
}
|
462 |
+
else {
|
463 |
+
//reCAPTCHA error for displaying on the default WP login form
|
464 |
+
if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_login') !== false) && ($wppb_recaptcha_response == false)) {
|
465 |
+
$user = new WP_Error('wppb_recaptcha_error', __('Please enter a (valid) reCAPTCHA value', 'profile-builder'));
|
466 |
+
}
|
467 |
|
|
|
|
|
|
|
468 |
}
|
469 |
}
|
470 |
}
|
482 |
$item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
|
483 |
|
484 |
if ( isset($field['captcha-wp-forms']) && (strpos( $field['captcha-wp-forms'], 'default_wp_recover_password') !== false) ) { // check where reCAPTCHA should display and add reCAPTCHA html
|
|
|
|
|
|
|
485 |
|
486 |
+
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ){
|
487 |
+
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
|
488 |
+
if (!empty($item_description))
|
489 |
+
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
490 |
+
|
491 |
+
echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">' . $recaptcha_output . '</div>';
|
492 |
+
}
|
493 |
+
else {
|
494 |
+
// output Invisible reCAPTCHA html
|
495 |
+
echo wppb_recaptcha_get_html($publickey);
|
496 |
+
}
|
497 |
}
|
498 |
}
|
499 |
}
|
524 |
$field = wppb_get_recaptcha_field();
|
525 |
|
526 |
if (!empty($field)) {
|
|
|
|
|
|
|
527 |
|
528 |
+
$publickey = trim($field['public-key']);
|
529 |
+
$item_title = apply_filters('wppb_register_recaptcha_custom_field_' . $field['id'] . '_item_title', wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_title_translation', $field['field-title']));
|
530 |
+
$item_description = wppb_icl_t('plugin profile-builder-pro', 'custom_field_' . $field['id'] . '_description_translation', $field['description']);
|
|
|
|
|
531 |
|
532 |
+
wppb_recaptcha_set_default_values();
|
533 |
+
if (isset($field['captcha-wp-forms']) && (strpos($field['captcha-wp-forms'], 'default_wp_register') !== false)) { // check where reCAPTCHA should display and add reCAPTCHA html
|
534 |
+
|
535 |
+
if ( empty($field['recaptcha-type']) || ($field['recaptcha-type'] == 'v2') ) {
|
536 |
+
$recaptcha_output = '<label for="recaptcha_response_field" style="padding-left:15px; padding-bottom:7px;">' . $item_title . '</label>' . wppb_recaptcha_get_html($publickey);
|
537 |
+
if (!empty($item_description))
|
538 |
+
$recaptcha_output .= '<span class="wppb-description-delimiter">' . $item_description . '</span>';
|
539 |
+
|
540 |
+
echo '<div class="wppb-form-field wppb-recaptcha" style="margin-left:-14px; margin-bottom: 15px;">' . $recaptcha_output . '</div>';
|
541 |
+
}
|
542 |
+
else {
|
543 |
+
// output reCAPTCHA html
|
544 |
+
echo wppb_recaptcha_get_html($publickey);
|
545 |
+
}
|
546 |
+
}
|
547 |
}
|
548 |
}
|
549 |
add_action( 'register_form', 'wppb_display_recaptcha_default_wp_register' );
|
566 |
}
|
567 |
add_filter('registration_errors','wppb_verify_recaptcha_default_wp_register');
|
568 |
|
569 |
+
// set default values in case there's already an existing reCAPTCHA field in Manage fields (when upgrading)
|
570 |
function wppb_recaptcha_set_default_values() {
|
571 |
$manage_fields = get_option('wppb_manage_fields', 'not_set');
|
572 |
if ($manage_fields != 'not_set') {
|
574 |
if ($value['field'] == 'reCAPTCHA') {
|
575 |
if ( !isset($value['captcha-pb-forms']) ) $manage_fields[$key]['captcha-pb-forms'] = 'pb_register';
|
576 |
if ( !isset($value['captcha-wp-forms']) ) $manage_fields[$key]['captcha-wp-forms'] = 'default_wp_register';
|
577 |
+
if ( !isset($value['recaptcha-type']) ) $manage_fields[$key]['recaptcha-type'] = 'v2';
|
578 |
}
|
579 |
}
|
580 |
update_option('wppb_manage_fields', $manage_fields);
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 2.7.
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -33,7 +33,7 @@ function wppb_free_plugin_init() {
|
|
33 |
{
|
34 |
?>
|
35 |
<div class="error">
|
36 |
-
<p><?php
|
37 |
</div>
|
38 |
<?php
|
39 |
}
|
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
|
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
-
define('PROFILE_BUILDER_VERSION', '2.7.
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 2.7.7
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
33 |
{
|
34 |
?>
|
35 |
<div class="error">
|
36 |
+
<p><?php printf( __( '%s is also activated. You need to deactivate it before activating this version of the plugin.', 'profile-builder'), PROFILE_BUILDER ); ?></p>
|
37 |
</div>
|
38 |
<?php
|
39 |
}
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
+
define('PROFILE_BUILDER_VERSION', '2.7.7' );
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.9.4
|
7 |
-
Stable tag: 2.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -163,6 +163,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
163 |
12. Role Editor
|
164 |
|
165 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
166 |
= 2.7.6 =
|
167 |
* Fixed some issues on the login form that prevented some users from logging in
|
168 |
* When changing/recovering password we now log out of all other/all sessions
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.9.4
|
7 |
+
Stable tag: 2.7.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
163 |
12. Role Editor
|
164 |
|
165 |
== Changelog ==
|
166 |
+
= 2.7.7 =
|
167 |
+
* Added Invisible reCAPTCHA support for both PB forms as well as default WordPress forms
|
168 |
+
* Small CSS modification in role editor
|
169 |
+
* Fixing some CSS issues with notifications class on some pages and addon pages
|
170 |
+
|
171 |
= 2.7.6 =
|
172 |
* Fixed some issues on the login form that prevented some users from logging in
|
173 |
* When changing/recovering password we now log out of all other/all sessions
|
translation/profile-builder.catalog.php
ADDED
@@ -0,0 +1,1602 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php __("", "profile-builder"); ?>
|
2 |
+
<?php __("bbPress", "profile-builder"); ?>
|
3 |
+
<?php __("bbPress Integration", "profile-builder"); ?>
|
4 |
+
<?php __("Choose (Single) User Listing to display under bbPress user Profile tab:", "profile-builder"); ?>
|
5 |
+
<?php __("None", "profile-builder"); ?>
|
6 |
+
<?php __("Select which Single User-listing managed via Profile Builder should replace the default bbPress user profile.", "profile-builder"); ?>
|
7 |
+
<?php __("Choose Edit Profile form to display under bbPress Profile Edit tab:", "profile-builder"); ?>
|
8 |
+
<?php __("Default Edit Profile", "profile-builder"); ?>
|
9 |
+
<?php __("Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab.", "profile-builder"); ?>
|
10 |
+
<?php __("Topics Started", "profile-builder"); ?>
|
11 |
+
<?php __("Replies Created", "profile-builder"); ?>
|
12 |
+
<?php __("Forum Role", "profile-builder"); ?>
|
13 |
+
<?php __("bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!", "profile-builder"); ?>
|
14 |
+
<?php __("BuddyPress", "profile-builder"); ?>
|
15 |
+
<?php __("BuddyPress Integration", "profile-builder"); ?>
|
16 |
+
<?php __("Import BuddyPress Fields to Profile Builder", "profile-builder"); ?>
|
17 |
+
<?php __("Import BuddyPress Fields", "profile-builder"); ?>
|
18 |
+
<?php __("Create fields in Profile Builder that match the existing ones in BuddyPress and import all the user field entries.<br><a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/add-ons/buddypress/#Import_BuddyPress_Fields_to_Profile_Builder\">Learn more about importing BuddyPress fields</a>.", "profile-builder"); ?>
|
19 |
+
<?php __("Registration form:", "profile-builder"); ?>
|
20 |
+
<?php __("Default Registration", "profile-builder"); ?>
|
21 |
+
<?php __("Select Profile Builder Registration form to replace the BuddyPress Registration form.<br>Registration emails will now be managed in Profile Builder -> User Email Customizer", "profile-builder"); ?>
|
22 |
+
<?php __("Edit Profile form:", "profile-builder"); ?>
|
23 |
+
<?php __("Select Profile Builder Edit Profile form to replace the BuddyPress Profile Edit tab.", "profile-builder"); ?>
|
24 |
+
<?php __("User Listing template:", "profile-builder"); ?>
|
25 |
+
<?php __("Select which User Listing template managed by Profile Builder should replace the default BuddyPress user profile view.", "profile-builder"); ?>
|
26 |
+
<?php __("Use All-User Listing?", "profile-builder"); ?>
|
27 |
+
<?php __("Enable PB User Listing on BuddyPress Members page", "profile-builder"); ?>
|
28 |
+
<?php __("Check this if All User-listing managed via Profile Builder should replace the default BuddyPress Members page.<br>The template used will be the one selected above.", "profile-builder"); ?>
|
29 |
+
<?php __("Allow members to override", "profile-builder"); ?>
|
30 |
+
<?php __("Enforce field visibility", "profile-builder"); ?>
|
31 |
+
<?php __("BuddyPress Default Field Visibility", "profile-builder"); ?>
|
32 |
+
<?php __("BuddyPress Allow Custom Visibility", "profile-builder"); ?>
|
33 |
+
<?php __("This field can be seen by: ", "profile-builder"); ?>
|
34 |
+
<?php __("Change", "profile-builder"); ?>
|
35 |
+
<?php __("Who can see this field?", "profile-builder"); ?>
|
36 |
+
<?php __("Close", "profile-builder"); ?>
|
37 |
+
<?php __("Everyone", "profile-builder"); ?>
|
38 |
+
<?php __("Only Me", "profile-builder"); ?>
|
39 |
+
<?php __("All Members", "profile-builder"); ?>
|
40 |
+
<?php __("My Friends", "profile-builder"); ?>
|
41 |
+
<?php __("<h2>Import BuddyPress Fields to Profile Builder</h2>", "profile-builder"); ?>
|
42 |
+
<?php __("BuddyPress is not installed and active. Import aborted!", "profile-builder"); ?>
|
43 |
+
<?php __("Importing BuddyPress Field Settings to Profile Builder...<br><br>", "profile-builder"); ?>
|
44 |
+
<?php __("If the page does not redirect automatically", "profile-builder"); ?>
|
45 |
+
<?php __("click here", "profile-builder"); ?>
|
46 |
+
<?php __("Importing User entries BuddyPress Fields to Profile Builder...<br><br>", "profile-builder"); ?>
|
47 |
+
<?php __("Done.", "profile-builder"); ?>
|
48 |
+
<?php __("Back to BuddyPress Settings page", "profile-builder"); ?>
|
49 |
+
<?php __("Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar.", "profile-builder"); ?>
|
50 |
+
<?php __("BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!", "profile-builder"); ?>
|
51 |
+
<?php __("Name", "profile-builder"); ?>
|
52 |
+
<?php __("Username:", "profile-builder"); ?>
|
53 |
+
<?php __("First Name:", "profile-builder"); ?>
|
54 |
+
<?php __("Last Name:", "profile-builder"); ?>
|
55 |
+
<?php __("Nickname:", "profile-builder"); ?>
|
56 |
+
<?php __("Display name:", "profile-builder"); ?>
|
57 |
+
<?php __("Contact Info", "profile-builder"); ?>
|
58 |
+
<?php __("Website:", "profile-builder"); ?>
|
59 |
+
<?php __("About Yourself", "profile-builder"); ?>
|
60 |
+
<?php __("Biographical Info:", "profile-builder"); ?>
|
61 |
+
<?php __("BuddyPress Avatar", "profile-builder"); ?>
|
62 |
+
<?php __("BuddyPress Cover Photo", "profile-builder"); ?>
|
63 |
+
<?php __("BuddyPress Last Active", "profile-builder"); ?>
|
64 |
+
<?php __("BuddyPress Add Friend Button", "profile-builder"); ?>
|
65 |
+
<?php __("BuddyPress Latest Update", "profile-builder"); ?>
|
66 |
+
<?php __("Never active", "profile-builder"); ?>
|
67 |
+
<?php __("Last Active", "profile-builder"); ?>
|
68 |
+
<?php __("My BuddyPress Friends Tab", "profile-builder"); ?>
|
69 |
+
<?php __("BuddyPress field visibility syntax", "profile-builder"); ?>
|
70 |
+
<?php __("Are you sure you want to reset this template?", "profile-builder"); ?>
|
71 |
+
<?php __("Reset to Default BuddyPress User Listing Templates", "profile-builder"); ?>
|
72 |
+
<?php __("<b>Note:</b> This action is not reversible. All modifications to this template will be lost!", "profile-builder"); ?>
|
73 |
+
<?php __("Reset template", "profile-builder"); ?>
|
74 |
+
<?php __("CSS Class", "profile-builder"); ?>
|
75 |
+
<?php __("Add a class to a field. Should not contain dots(.) and for multiple classes separate by space.", "profile-builder"); ?>
|
76 |
+
<?php __("Login Label", "profile-builder"); ?>
|
77 |
+
<?php __("Login", "profile-builder"); ?>
|
78 |
+
<?php __("Logout Label", "profile-builder"); ?>
|
79 |
+
<?php __("Logout", "profile-builder"); ?>
|
80 |
+
<?php __("Form page URL", "profile-builder"); ?>
|
81 |
+
<?php __("Login page URL", "profile-builder"); ?>
|
82 |
+
<?php __("Login Form page URL", "profile-builder"); ?>
|
83 |
+
<?php __("Edit Profile Form page URL", "profile-builder"); ?>
|
84 |
+
<?php __("Register Form page URL", "profile-builder"); ?>
|
85 |
+
<?php __("Display Mode", "profile-builder"); ?>
|
86 |
+
<?php __("Logged In Users", "profile-builder"); ?>
|
87 |
+
<?php __("Logged Out Users", "profile-builder"); ?>
|
88 |
+
<?php __("Restrict menu item to a minimum role", "profile-builder"); ?>
|
89 |
+
<?php __("Works only if Display Mode: Logged In Users is selected", "profile-builder"); ?>
|
90 |
+
<?php __("Edit Profile", "profile-builder"); ?>
|
91 |
+
<?php __("Register", "profile-builder"); ?>
|
92 |
+
<?php __("iFrame Title", "profile-builder"); ?>
|
93 |
+
<?php __("iFrame Size", "profile-builder"); ?>
|
94 |
+
<?php __("Height (px)", "profile-builder"); ?>
|
95 |
+
<?php __("Width (px)", "profile-builder"); ?>
|
96 |
+
<?php __("The email confirmation does not match your email address.", "profile-builder"); ?>
|
97 |
+
<?php __("Visibility", "profile-builder"); ?>
|
98 |
+
<?php __("<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
|
99 |
+
<?php __("User Role Visibility", "profile-builder"); ?>
|
100 |
+
<?php __("Select which user roles see this field", "profile-builder"); ?>
|
101 |
+
<?php __("Location Visibility", "profile-builder"); ?>
|
102 |
+
<?php __("Select the locations you wish the field to appear", "profile-builder"); ?>
|
103 |
+
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>", "profile-builder"); ?>
|
104 |
+
<?php __("Edit", "profile-builder"); ?>
|
105 |
+
<?php __("Delete", "profile-builder"); ?>
|
106 |
+
<?php __("This field is visible only for administrators.", "profile-builder"); ?>
|
107 |
+
<?php __("This field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
|
108 |
+
<?php __("This field is visible only for the following user roles: %1$s", "profile-builder"); ?>
|
109 |
+
<?php __("This field is visible only in the following locations: %1$s", "profile-builder"); ?>
|
110 |
+
<?php __("Get file", "profile-builder"); ?>
|
111 |
+
<?php __("You do not have the capabilities necessary to edit this field.", "profile-builder"); ?>
|
112 |
+
<?php __("Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site.", "profile-builder"); ?>
|
113 |
+
<?php __("Export", "profile-builder"); ?>
|
114 |
+
<?php __("Import Profile Builder options from a .json file. This allows you to easily import the configuration from another site. ", "profile-builder"); ?>
|
115 |
+
<?php __("Import", "profile-builder"); ?>
|
116 |
+
<?php __("This will overwrite your old PB settings! Are you sure you want to continue?", "profile-builder"); ?>
|
117 |
+
<?php __("Import and Export", "profile-builder"); ?>
|
118 |
+
<?php __(" labels scanned.", "profile-builder"); ?>
|
119 |
+
<?php __("Labels Edit", "profile-builder"); ?>
|
120 |
+
<?php __("Label to Edit", "profile-builder"); ?>
|
121 |
+
<?php __("New Label", "profile-builder"); ?>
|
122 |
+
<?php __("Edit Labels", "profile-builder"); ?>
|
123 |
+
<?php __("Rescan Lables", "profile-builder"); ?>
|
124 |
+
<?php __("Informations", "profile-builder"); ?>
|
125 |
+
<?php __("Import and Export Labels", "profile-builder"); ?>
|
126 |
+
<?php __("Import Labels from a .json file.", "profile-builder"); ?>
|
127 |
+
<?php __("Easily import the labels from another site.", "profile-builder"); ?>
|
128 |
+
<?php __("This will overwrite all your old edited labels!\nAre you sure you want to continue?", "profile-builder"); ?>
|
129 |
+
<?php __("Export Labels as a .json file.", "profile-builder"); ?>
|
130 |
+
<?php __("Easily import the labels into another site.", "profile-builder"); ?>
|
131 |
+
<?php __("You must select a label to edit!", "profile-builder"); ?>
|
132 |
+
<?php __("Labels", "profile-builder"); ?>
|
133 |
+
<?php __("Delete all", "profile-builder"); ?>
|
134 |
+
<?php __("No labels edited, nothing to export!", "profile-builder"); ?>
|
135 |
+
<?php __("MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!", "profile-builder"); ?>
|
136 |
+
<?php __("Maximum Character Length", "profile-builder"); ?>
|
137 |
+
<?php __("Specify the maximum number of characters a user can type in this field", "profile-builder"); ?>
|
138 |
+
<?php __("The entered character number is not numerical\n", "profile-builder"); ?>
|
139 |
+
<?php __("Step", "profile-builder"); ?>
|
140 |
+
<?php __("Title for Tab", "profile-builder"); ?>
|
141 |
+
<?php __("Add Break Points to edit tabs title.", "profile-builder"); ?>
|
142 |
+
<?php __("Publish the form to edit tabs title.", "profile-builder"); ?>
|
143 |
+
<?php __("Publish the form before adding Break Points!", "profile-builder"); ?>
|
144 |
+
<?php __("Request in process, please wait a few seconds before a new one!", "profile-builder"); ?>
|
145 |
+
<?php __("Multi-Step Forms", "profile-builder"); ?>
|
146 |
+
<?php __("Multi-Step Forms options updated.", "profile-builder"); ?>
|
147 |
+
<?php __("Enable on:", "profile-builder"); ?>
|
148 |
+
<?php __("PB Default Register Form", "profile-builder"); ?>
|
149 |
+
<?php __("PB Default Edit Profile Form", "profile-builder"); ?>
|
150 |
+
<?php __("To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page.", "profile-builder"); ?>
|
151 |
+
<?php __("Pagination and Tabs:", "profile-builder"); ?>
|
152 |
+
<?php __("Enable Pagination", "profile-builder"); ?>
|
153 |
+
<?php __("Enable Tabs", "profile-builder"); ?>
|
154 |
+
<?php __("Edit Tabs Title", "profile-builder"); ?>
|
155 |
+
<?php __("Update Multi-Step", "profile-builder"); ?>
|
156 |
+
<?php __("To enable MSF you must add Break Points.", "profile-builder"); ?>
|
157 |
+
<?php __("Next", "profile-builder"); ?>
|
158 |
+
<?php __("Previous", "profile-builder"); ?>
|
159 |
+
<?php __("Placeholder Labels", "profile-builder"); ?>
|
160 |
+
<?php __("Replace labels with placeholders:", "profile-builder"); ?>
|
161 |
+
<?php __("Yes", "profile-builder"); ?>
|
162 |
+
<?php __("No", "profile-builder"); ?>
|
163 |
+
<?php __("Social Connect", "profile-builder"); ?>
|
164 |
+
<?php __("Display on the Following Forms", "profile-builder"); ?>
|
165 |
+
<?php __("Disable Registration on", "profile-builder"); ?>
|
166 |
+
<?php __("Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms.", "profile-builder"); ?>
|
167 |
+
<?php __("Facebook Login", "profile-builder"); ?>
|
168 |
+
<?php __("Facebook App ID", "profile-builder"); ?>
|
169 |
+
<?php __("Google+ Login", "profile-builder"); ?>
|
170 |
+
<?php __("Google+ Client ID", "profile-builder"); ?>
|
171 |
+
<?php __("Twitter Login", "profile-builder"); ?>
|
172 |
+
<?php __("Twitter API Key", "profile-builder"); ?>
|
173 |
+
<?php __("Twitter API Secret", "profile-builder"); ?>
|
174 |
+
<?php __("LinkedIn Login", "profile-builder"); ?>
|
175 |
+
<?php __("LinkedIn Client ID", "profile-builder"); ?>
|
176 |
+
<?php __("Buttons Order", "profile-builder"); ?>
|
177 |
+
<?php __("Drag and drop the dots to re-order.", "profile-builder"); ?>
|
178 |
+
<?php __("Buttons Re-Order", "profile-builder"); ?>
|
179 |
+
<?php __("Save the buttons order from the buttons order checkboxes", "profile-builder"); ?>
|
180 |
+
<?php __("Buttons Location", "profile-builder"); ?>
|
181 |
+
<?php __("Display social buttons before or after the forms fields.", "profile-builder"); ?>
|
182 |
+
<?php __("Buttons Style", "profile-builder"); ?>
|
183 |
+
<?php __("Heading Before Buttons (Login/Register)", "profile-builder"); ?>
|
184 |
+
<?php __("Empty field will remove the heading.", "profile-builder"); ?>
|
185 |
+
<?php __("Heading Before Buttons (Edit Profile)", "profile-builder"); ?>
|
186 |
+
<?php __("Facebook Button Text (Login/Register)", "profile-builder"); ?>
|
187 |
+
<?php __("Google+ Button Text (Login/Register)", "profile-builder"); ?>
|
188 |
+
<?php __("Twitter Button Text (Login/Register)", "profile-builder"); ?>
|
189 |
+
<?php __("LinkedIn Button Text (Login/Register)", "profile-builder"); ?>
|
190 |
+
<?php __("Facebook Button Text (Edit Profile)", "profile-builder"); ?>
|
191 |
+
<?php __("Google+ Button Text (Edit Profile)", "profile-builder"); ?>
|
192 |
+
<?php __("Twitter Button Text (Edit Profile)", "profile-builder"); ?>
|
193 |
+
<?php __("LinkedIn Button Text (Edit Profile)", "profile-builder"); ?>
|
194 |
+
<?php __("Unlink Accounts (Edit Profile)", "profile-builder"); ?>
|
195 |
+
<?php __("This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page.", "profile-builder"); ?>
|
196 |
+
<?php __("Default Social Connect CSS in the Front-end", "profile-builder"); ?>
|
197 |
+
<?php __("Settings", "profile-builder"); ?>
|
198 |
+
<?php __("Help", "profile-builder"); ?>
|
199 |
+
<?php __("Display Social Connect buttons:", "profile-builder"); ?>
|
200 |
+
<?php __("You have successfully unlinked %% from your account.", "profile-builder"); ?>
|
201 |
+
<?php __("An account with this email address already exists.<br> Do you want to connect it?", "profile-builder"); ?>
|
202 |
+
<?php __("Please enter your website account password", "profile-builder"); ?>
|
203 |
+
<?php __("Please enter a new email", "profile-builder"); ?>
|
204 |
+
<?php __("You have successfully linked your account to %%.", "profile-builder"); ?>
|
205 |
+
<?php __("Something went wrong. Please try again later!", "profile-builder"); ?>
|
206 |
+
<?php __("Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link.", "profile-builder"); ?>
|
207 |
+
<?php __("<strong>ERROR</strong>: You need to confirm your email address before you can log in.", "profile-builder"); ?>
|
208 |
+
<?php __("Before you can access your account an administrator has to approve it. You will be notified via email.", "profile-builder"); ?>
|
209 |
+
<?php __("<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
|
210 |
+
<?php __("You will be redirected in 5 seconds. If not, click %%.", "profile-builder"); ?>
|
211 |
+
<?php __("here", "profile-builder"); ?>
|
212 |
+
<?php __("<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first.", "profile-builder"); ?>
|
213 |
+
<?php __("Wrong password!", "profile-builder"); ?>
|
214 |
+
<?php __("Please enter a valid email!", "profile-builder"); ?>
|
215 |
+
<?php __("You can only login on this form.<br>Register with your social account on the register form.", "profile-builder"); ?>
|
216 |
+
<?php __("Please enter your Facebook email", "profile-builder"); ?>
|
217 |
+
<?php __("Please enter your Facebook email!", "profile-builder"); ?>
|
218 |
+
<?php __("Waiting for Twitter...", "profile-builder"); ?>
|
219 |
+
<?php __("Please enter your Twitter email", "profile-builder"); ?>
|
220 |
+
<?php __("Please enter your Twitter email!", "profile-builder"); ?>
|
221 |
+
<?php __("Profile Builder not active!", "profile-builder"); ?>
|
222 |
+
<?php __("General Settings", "profile-builder"); ?>
|
223 |
+
<?php __("Application Settings", "profile-builder"); ?>
|
224 |
+
<?php __("Appearance Settings", "profile-builder"); ?>
|
225 |
+
<?php __("Unlink", "profile-builder"); ?>
|
226 |
+
<?php __("Your account is linked with:", "profile-builder"); ?>
|
227 |
+
<?php __("Country", "profile-builder"); ?>
|
228 |
+
<?php __("First Name", "profile-builder"); ?>
|
229 |
+
<?php __("Last Name", "profile-builder"); ?>
|
230 |
+
<?php __("Company Name", "profile-builder"); ?>
|
231 |
+
<?php __("Address", "profile-builder"); ?>
|
232 |
+
<?php __("Town / City", "profile-builder"); ?>
|
233 |
+
<?php __("State / County", "profile-builder"); ?>
|
234 |
+
<?php __("Postcode / Zip", "profile-builder"); ?>
|
235 |
+
<?php __("Email Address", "profile-builder"); ?>
|
236 |
+
<?php __("Phone", "profile-builder"); ?>
|
237 |
+
<?php __("Ship to a different address?", "profile-builder"); ?>
|
238 |
+
<?php __("Billing Address", "profile-builder"); ?>
|
239 |
+
<?php __("Displays customer billing fields in front-end. ", "profile-builder"); ?>
|
240 |
+
<?php __("Shipping Address", "profile-builder"); ?>
|
241 |
+
<?php __("Displays customer shipping fields in front-end. ", "profile-builder"); ?>
|
242 |
+
<?php __("Address line 2", "profile-builder"); ?>
|
243 |
+
<?php __("Billing Fields", "profile-builder"); ?>
|
244 |
+
<?php __("Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required", "profile-builder"); ?>
|
245 |
+
<?php __("Billing Fields Order", "profile-builder"); ?>
|
246 |
+
<?php __("Save the billing fields order from the billing fields checkboxes", "profile-builder"); ?>
|
247 |
+
<?php __("Billing Fields Name", "profile-builder"); ?>
|
248 |
+
<?php __("Save the billing fields names", "profile-builder"); ?>
|
249 |
+
<?php __("Shipping Fields", "profile-builder"); ?>
|
250 |
+
<?php __("Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required", "profile-builder"); ?>
|
251 |
+
<?php __("Shipping Fields Order", "profile-builder"); ?>
|
252 |
+
<?php __("Save the shipping fields order from the billing fields checkboxes", "profile-builder"); ?>
|
253 |
+
<?php __("Shipping Fields Name", "profile-builder"); ?>
|
254 |
+
<?php __("Save the shipping fields names", "profile-builder"); ?>
|
255 |
+
<?php __("Field Name", "profile-builder"); ?>
|
256 |
+
<?php __("Required", "profile-builder"); ?>
|
257 |
+
<?php __("Click to edit ", "profile-builder"); ?>
|
258 |
+
<?php __("The email you entered is not a valid email address.", "profile-builder"); ?>
|
259 |
+
<?php __("No options available. Please select one country.", "profile-builder"); ?>
|
260 |
+
<?php __("Billing ", "profile-builder"); ?>
|
261 |
+
<?php __("Shipping ", "profile-builder"); ?>
|
262 |
+
<?php __("WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!", "profile-builder"); ?>
|
263 |
+
<?php __("Display on WooCommerce Checkout", "profile-builder"); ?>
|
264 |
+
<?php __("Whether the field should be added to the WooCommerce checkout form or not", "profile-builder"); ?>
|
265 |
+
<?php __("WooCommerce Sync", "profile-builder"); ?>
|
266 |
+
<?php __("Choose Register form to display on My Account page:", "profile-builder"); ?>
|
267 |
+
<?php __("Default Register", "profile-builder"); ?>
|
268 |
+
<?php __("Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page.", "profile-builder"); ?>
|
269 |
+
<?php __("Choose Edit Profile form to display on My Account page:", "profile-builder"); ?>
|
270 |
+
<?php __("Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce.", "profile-builder"); ?>
|
271 |
+
<?php __("%s is also activated. You need to deactivate it before activating this version of the plugin.", "profile-builder"); ?>
|
272 |
+
<?php __("Campaign Monitor", "profile-builder"); ?>
|
273 |
+
<?php __("Campaign Monitor Integration", "profile-builder"); ?>
|
274 |
+
<?php __("Save", "profile-builder"); ?>
|
275 |
+
<?php __("Campaign Monitor API key:", "profile-builder"); ?>
|
276 |
+
<?php __("The API key was successfully validated!", "profile-builder"); ?>
|
277 |
+
<?php __("Either the API key is not valid or we could not connect to Campaign Monitor to validate it!", "profile-builder"); ?>
|
278 |
+
<?php __("Enter your Campaign Monitor account API key.", "profile-builder"); ?>
|
279 |
+
<?php __("Select client:", "profile-builder"); ?>
|
280 |
+
<?php __("Loading clients...", "profile-builder"); ?>
|
281 |
+
<?php __("Select a client that you would like to edit.", "profile-builder"); ?>
|
282 |
+
<?php __("No clients found", "profile-builder"); ?>
|
283 |
+
<?php __("Select a client...", "profile-builder"); ?>
|
284 |
+
<?php __("Client List", "profile-builder"); ?>
|
285 |
+
<?php __("Fields Count", "profile-builder"); ?>
|
286 |
+
<?php __("Retrieves changes made in your Campaign Monitor account and matches it with the saved data from the add-on. This does not save the new data, so you will have to manually save.", "profile-builder"); ?>
|
287 |
+
<?php __("Synchronize client data", "profile-builder"); ?>
|
288 |
+
<?php __("Change client", "profile-builder"); ?>
|
289 |
+
<?php __("No lists were found.", "profile-builder"); ?>
|
290 |
+
<?php __("Click to edit", "profile-builder"); ?>
|
291 |
+
<?php __("Cancel", "profile-builder"); ?>
|
292 |
+
<?php __("Field Associations:", "profile-builder"); ?>
|
293 |
+
<?php __("Associate each Campaign Monitor field with a Profile Builder field", "profile-builder"); ?>
|
294 |
+
<?php __("Extra Options:", "profile-builder"); ?>
|
295 |
+
<?php __("Resubscribe", "profile-builder"); ?>
|
296 |
+
<?php __("If the subscriber is in an inactive state or has previously been unsubscribed and you check the Resubscribe option, they will be re-added to the list. Therefore, this method should be used with caution and only where suitable.", "profile-builder"); ?>
|
297 |
+
<?php __("Campaign Monitor API key is empty", "profile-builder"); ?>
|
298 |
+
<?php __("Campaign Monitor API key is invalid", "profile-builder"); ?>
|
299 |
+
<?php __("Campaign Monitor List", "profile-builder"); ?>
|
300 |
+
<?php __("Please enter a Campaign Monitor API key <a href=\"%s\">here</a>.", "profile-builder"); ?>
|
301 |
+
<?php __("Something went wrong. Either the API key is invalid or we could not connect to Campaign Monitor to validate the key.", "profile-builder"); ?>
|
302 |
+
<?php __("Select a list...", "profile-builder"); ?>
|
303 |
+
<?php __("Select in which Campaign Monitor list you wish to add a new subscriber", "profile-builder"); ?>
|
304 |
+
<?php __("Hide on Edit Profile", "profile-builder"); ?>
|
305 |
+
<?php __("If checked this field will not be displayed on edit profile forms", "profile-builder"); ?>
|
306 |
+
<?php __("We couldn't find any lists in your Campaign Monitor settings.", "profile-builder"); ?>
|
307 |
+
<?php __("Please select at least one Campaign Monitor list \n", "profile-builder"); ?>
|
308 |
+
<?php __("Profile Builder Campaign Monitor Widget", "profile-builder"); ?>
|
309 |
+
<?php __("Adds a basic subscribe form so that your users can subscribe to your Campaign Monitor lists", "profile-builder"); ?>
|
310 |
+
<?php __("Something went wrong. Either the Campaign Monitor API key is missing or it is invalid.", "profile-builder"); ?>
|
311 |
+
<?php __("%s", "profile-builder"); ?>
|
312 |
+
<?php __("Submit", "profile-builder"); ?>
|
313 |
+
<?php __("Subscribe to Newsletter", "profile-builder"); ?>
|
314 |
+
<?php __("Title", "profile-builder"); ?>
|
315 |
+
<?php __("Select the list your new subscriber will be added to", "profile-builder"); ?>
|
316 |
+
<?php __("Select list...", "profile-builder"); ?>
|
317 |
+
<?php __("No lists found", "profile-builder"); ?>
|
318 |
+
<?php __("Select which fields to show", "profile-builder"); ?>
|
319 |
+
<?php __("E-mail address", "profile-builder"); ?>
|
320 |
+
<?php __("fullname", "profile-builder"); ?>
|
321 |
+
<?php __("Extra options", "profile-builder"); ?>
|
322 |
+
<?php __("The Campaign Monitor API key is either missing or is invalid.", "profile-builder"); ?>
|
323 |
+
<?php __("Uploaded file is not valid json!", "profile-builder"); ?>
|
324 |
+
<?php __("Import successfully!", "profile-builder"); ?>
|
325 |
+
<?php __("Please select a .json file to import!", "profile-builder"); ?>
|
326 |
+
<?php __("Page will refresh in 3 seconds...", "profile-builder"); ?>
|
327 |
+
<?php __("MailChimp", "profile-builder"); ?>
|
328 |
+
<?php __("MailChimp Integration", "profile-builder"); ?>
|
329 |
+
<?php __("Before you can make any changes you will need to add a MailChimp API key.", "profile-builder"); ?>
|
330 |
+
<?php __("MailChimp List", "profile-builder"); ?>
|
331 |
+
<?php __("We couldn't find any lists", "profile-builder"); ?>
|
332 |
+
<?php __("MailChimp API Key:", "profile-builder"); ?>
|
333 |
+
<?php __("Either the API key is not valid or we could not connect to MailChimp to validate it!", "profile-builder"); ?>
|
334 |
+
<?php __("Enter a MailChimp API key. You can create keys in your MailChimp account.", "profile-builder"); ?>
|
335 |
+
<?php __("Edit this item", "profile-builder"); ?>
|
336 |
+
<?php __("This field is required in MailChimp", "profile-builder"); ?>
|
337 |
+
<?php __("Associate each MailChimp field with a Profile Builder field", "profile-builder"); ?>
|
338 |
+
<?php __("Group Associations:", "profile-builder"); ?>
|
339 |
+
<?php __("Associate each MailChimp group with a Profile Builder field", "profile-builder"); ?>
|
340 |
+
<?php __("Double Opt-In", "profile-builder"); ?>
|
341 |
+
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscription", "profile-builder"); ?>
|
342 |
+
<?php __("Send Welcome E-mail", "profile-builder"); ?>
|
343 |
+
<?php __("If checked will send an e-mail to welcome the user to the subscribtion area", "profile-builder"); ?>
|
344 |
+
<?php __("MailChimp API key is empty", "profile-builder"); ?>
|
345 |
+
<?php __("MailChimp API key is invalid", "profile-builder"); ?>
|
346 |
+
<?php __("Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key.", "profile-builder"); ?>
|
347 |
+
<?php __("Please enter a MailChimp API key <a href=\"%s\">here</a>.", "profile-builder"); ?>
|
348 |
+
<?php __("Select in which MailChimp list you wish to add a new subscriber", "profile-builder"); ?>
|
349 |
+
<?php __("Checked by Default", "profile-builder"); ?>
|
350 |
+
<?php __("If checked the Subscribe checkbox in the front-end will be checked by default on register forms", "profile-builder"); ?>
|
351 |
+
<?php __("We couldn't find any lists in your MailChimp settings.", "profile-builder"); ?>
|
352 |
+
<?php __("Please select at least one MailChimp list \n", "profile-builder"); ?>
|
353 |
+
<?php __("Profile Builder MailChimp Widget", "profile-builder"); ?>
|
354 |
+
<?php __("Adds a basic subscribe form so that your users can subscribe to your MailChimp lists", "profile-builder"); ?>
|
355 |
+
<?php __("Something went wrong. Either the MailChimp API key is missing or it is invalid.", "profile-builder"); ?>
|
356 |
+
<?php __("Select...", "profile-builder"); ?>
|
357 |
+
<?php __("Extra Options", "profile-builder"); ?>
|
358 |
+
<?php __("If you select double opt-in, the user will receive an e-mail to confirm the subscribtion", "profile-builder"); ?>
|
359 |
+
<?php __("Please select a list first", "profile-builder"); ?>
|
360 |
+
<?php __("No list was found.", "profile-builder"); ?>
|
361 |
+
<?php __("MailPoet List", "profile-builder"); ?>
|
362 |
+
<?php __("Select in which MailPoet list you wish to add a new subscriber", "profile-builder"); ?>
|
363 |
+
<?php __("We couldn't find any lists in your MailPoet settings.", "profile-builder"); ?>
|
364 |
+
<?php __("Please install and activate MailPoet plugin.", "profile-builder"); ?>
|
365 |
+
<?php __("Please select at least one MailPoet list \n", "profile-builder"); ?>
|
366 |
+
<?php __("Maximum Selections", "profile-builder"); ?>
|
367 |
+
<?php __("Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected.", "profile-builder"); ?>
|
368 |
+
<?php __("User Inputted Options", "profile-builder"); ?>
|
369 |
+
<?php __("Check this to allow users to create their own options beside the pre-existing ones.", "profile-builder"); ?>
|
370 |
+
<?php __("required", "profile-builder"); ?>
|
371 |
+
<?php __("Link with Facebook", "profile-builder"); ?>
|
372 |
+
<?php __("Sign in with Facebook", "profile-builder"); ?>
|
373 |
+
<?php __("Link with Google+", "profile-builder"); ?>
|
374 |
+
<?php __("Sign in with Google+", "profile-builder"); ?>
|
375 |
+
<?php __("Link with LinkedIn", "profile-builder"); ?>
|
376 |
+
<?php __("Sign in with LinkedIn", "profile-builder"); ?>
|
377 |
+
<?php __("Connection with twitter Failed", "profile-builder"); ?>
|
378 |
+
<?php __("Error Receiving Request Token", "profile-builder"); ?>
|
379 |
+
<?php __("Something went wrong. Please try again later.", "profile-builder"); ?>
|
380 |
+
<?php __("Link with Twitter", "profile-builder"); ?>
|
381 |
+
<?php __("Sign in with Twitter", "profile-builder"); ?>
|
382 |
+
<?php __("Add-Ons", "profile-builder"); ?>
|
383 |
+
<?php __("Recommended Plugins", "profile-builder"); ?>
|
384 |
+
<?php __("Free", "profile-builder"); ?>
|
385 |
+
<?php __("Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders.", "profile-builder"); ?>
|
386 |
+
<?php __("Activate", "profile-builder"); ?>
|
387 |
+
<?php __("Deactivate", "profile-builder"); ?>
|
388 |
+
<?php __("Plugin is <strong>inactive</strong>", "profile-builder"); ?>
|
389 |
+
<?php __("Plugin is <strong>active</strong>", "profile-builder"); ?>
|
390 |
+
<?php __("Install Now", "profile-builder"); ?>
|
391 |
+
<?php __("Compatible with your version of Profile Builder.", "profile-builder"); ?>
|
392 |
+
<?php __("Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>.", "profile-builder"); ?>
|
393 |
+
<?php __("Accept user payments, create subscription plans and restrict content on your membership site.", "profile-builder"); ?>
|
394 |
+
<?php __("Downloading and installing...", "profile-builder"); ?>
|
395 |
+
<?php __("Installation complete", "profile-builder"); ?>
|
396 |
+
<?php __("Add-On is Active", "profile-builder"); ?>
|
397 |
+
<?php __("Add-On has been activated", "profile-builder"); ?>
|
398 |
+
<?php __("Retry Install", "profile-builder"); ?>
|
399 |
+
<?php __("Add-On is <strong>active</strong>", "profile-builder"); ?>
|
400 |
+
<?php __("Add-On is <strong>inactive</strong>", "profile-builder"); ?>
|
401 |
+
<?php __("Add-On has been deactivated.", "profile-builder"); ?>
|
402 |
+
<?php __("Something went wrong, we could not connect to the server. Please try again later.", "profile-builder"); ?>
|
403 |
+
<?php __("Available in Hobbyist and Pro Versions", "profile-builder"); ?>
|
404 |
+
<?php __("Available in All Versions", "profile-builder"); ?>
|
405 |
+
<?php __("Learn More", "profile-builder"); ?>
|
406 |
+
<?php __("Download Now", "profile-builder"); ?>
|
407 |
+
<?php __("Upgrade Profile Builder", "profile-builder"); ?>
|
408 |
+
<?php __("Not compatible with Profile Builder", "profile-builder"); ?>
|
409 |
+
<?php __("Update", "profile-builder"); ?>
|
410 |
+
<?php __("Not compatible with your version of Profile Builder.", "profile-builder"); ?>
|
411 |
+
<?php __("Minimum required Profile Builder version:", "profile-builder"); ?>
|
412 |
+
<?php __("Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>.", "profile-builder"); ?>
|
413 |
+
<?php __("Show/Hide the Admin Bar on the Front-End", "profile-builder"); ?>
|
414 |
+
<?php __("Admin Bar Settings", "profile-builder"); ?>
|
415 |
+
<?php __("Choose which user roles view the admin bar in the front-end of the website.", "profile-builder"); ?>
|
416 |
+
<?php __("User-Role", "profile-builder"); ?>
|
417 |
+
<?php __("Default", "profile-builder"); ?>
|
418 |
+
<?php __("Show", "profile-builder"); ?>
|
419 |
+
<?php __("Hide", "profile-builder"); ?>
|
420 |
+
<?php __("Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )", "profile-builder"); ?>
|
421 |
+
<?php __("Display name publicly as - only appears on the Edit Profile page!", "profile-builder"); ?>
|
422 |
+
<?php __("Blog Details - only appears on the Registration page!", "profile-builder"); ?>
|
423 |
+
<?php __("<strong>ERROR</strong>: The password must have the minimum length of %s characters", "profile-builder"); ?>
|
424 |
+
<?php __("Very weak", "profile-builder"); ?>
|
425 |
+
<?php __("Weak", "profile-builder"); ?>
|
426 |
+
<?php __("Medium", "profile-builder"); ?>
|
427 |
+
<?php __("Strong", "profile-builder"); ?>
|
428 |
+
<?php __("<strong>ERROR</strong>: The password must have a minimum strength of %s", "profile-builder"); ?>
|
429 |
+
<?php __("Add Field", "profile-builder"); ?>
|
430 |
+
<?php __("Save Settings", "profile-builder"); ?>
|
431 |
+
<?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
|
432 |
+
<?php __("Extend WooCommerce checkout page with support for all the Profile Builder Pro custom field types, conditional logic and repeater fields with the latest <strong>WooSync addon</strong> for Profile Builder.", "profile-builder"); ?>
|
433 |
+
<?php __("Check it out!", "profile-builder"); ?>
|
434 |
+
<?php __("Dismiss this notice.", "profile-builder"); ?>
|
435 |
+
<?php __("Basic Information", "profile-builder"); ?>
|
436 |
+
<?php __("<strong>Profile Builder </strong> %s", "profile-builder"); ?>
|
437 |
+
<?php __("The best way to add front-end registration, edit profile and login forms.", "profile-builder"); ?>
|
438 |
+
<?php __("For Modern User Interaction", "profile-builder"); ?>
|
439 |
+
<?php __("Friction-less login using %s shortcode or a widget.", "profile-builder"); ?>
|
440 |
+
<?php __("Registration", "profile-builder"); ?>
|
441 |
+
<?php __("Beautiful registration forms fully customizable using the %s shortcode.", "profile-builder"); ?>
|
442 |
+
<?php __("Straight forward edit profile forms using %s shortcode.", "profile-builder"); ?>
|
443 |
+
<?php __("Extra Features", "profile-builder"); ?>
|
444 |
+
<?php __("Features that give you more control over your users, increased security and help you fight user registration spam.", "profile-builder"); ?>
|
445 |
+
<?php __("Enable extra features", "profile-builder"); ?>
|
446 |
+
<?php __("Recover Password", "profile-builder"); ?>
|
447 |
+
<?php __("Allow users to recover their password in the front-end using the %s.", "profile-builder"); ?>
|
448 |
+
<?php __("Admin Approval (*)", "profile-builder"); ?>
|
449 |
+
<?php __("You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI.", "profile-builder"); ?>
|
450 |
+
<?php __("Email Confirmation", "profile-builder"); ?>
|
451 |
+
<?php __("Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address.", "profile-builder"); ?>
|
452 |
+
<?php __("Content Restriction", "profile-builder"); ?>
|
453 |
+
<?php __("Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status.", "profile-builder"); ?>
|
454 |
+
<?php __("Minimum Password Length and Strength Meter", "profile-builder"); ?>
|
455 |
+
<?php __("Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength.", "profile-builder"); ?>
|
456 |
+
<?php __("Login with Email or Username", "profile-builder"); ?>
|
457 |
+
<?php __("Allow users to log in with their email or username when accessing your site.", "profile-builder"); ?>
|
458 |
+
<?php __("Roles Editor", "profile-builder"); ?>
|
459 |
+
<?php __("Add, remove, clone and edit roles and also capabilities for these roles.", "profile-builder"); ?>
|
460 |
+
<?php __("Customize Your Forms The Way You Want (*)", "profile-builder"); ?>
|
461 |
+
<?php __("With Extra Profile Fields you can create the exact registration form your project needs.", "profile-builder"); ?>
|
462 |
+
<?php __("Extra Profile Fields are available in Hobbyist or PRO versions", "profile-builder"); ?>
|
463 |
+
<?php __("Get started with extra fields", "profile-builder"); ?>
|
464 |
+
<?php __("Avatar Upload", "profile-builder"); ?>
|
465 |
+
<?php __("Generic Uploads", "profile-builder"); ?>
|
466 |
+
<?php __("Agree To Terms Checkbox", "profile-builder"); ?>
|
467 |
+
<?php __("Datepicker", "profile-builder"); ?>
|
468 |
+
<?php __("Timepicker", "profile-builder"); ?>
|
469 |
+
<?php __("Colorpicker", "profile-builder"); ?>
|
470 |
+
<?php __("reCAPTCHA", "profile-builder"); ?>
|
471 |
+
<?php __("Country Select", "profile-builder"); ?>
|
472 |
+
<?php __("Currency Select", "profile-builder"); ?>
|
473 |
+
<?php __("Timezone Select", "profile-builder"); ?>
|
474 |
+
<?php __("Input / Hidden Input", "profile-builder"); ?>
|
475 |
+
<?php __("Number", "profile-builder"); ?>
|
476 |
+
<?php __("Checkbox", "profile-builder"); ?>
|
477 |
+
<?php __("Select", "profile-builder"); ?>
|
478 |
+
<?php __("Radio Buttons", "profile-builder"); ?>
|
479 |
+
<?php __("Textarea", "profile-builder"); ?>
|
480 |
+
<?php __("Validation", "profile-builder"); ?>
|
481 |
+
<?php __("Map", "profile-builder"); ?>
|
482 |
+
<?php __("HTML", "profile-builder"); ?>
|
483 |
+
<?php __("Powerful Modules (**)", "profile-builder"); ?>
|
484 |
+
<?php __("Everything you will need to manage your users is probably already available using the Pro Modules.", "profile-builder"); ?>
|
485 |
+
<?php __("Enable your modules", "profile-builder"); ?>
|
486 |
+
<?php __("Find out more about PRO Modules", "profile-builder"); ?>
|
487 |
+
<?php __("User Listing", "profile-builder"); ?>
|
488 |
+
<?php __("Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings.", "profile-builder"); ?>
|
489 |
+
<?php __("To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s.", "profile-builder"); ?>
|
490 |
+
<?php __("Email Customizer", "profile-builder"); ?>
|
491 |
+
<?php __("Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval.", "profile-builder"); ?>
|
492 |
+
<?php __("Custom Redirects", "profile-builder"); ?>
|
493 |
+
<?php __("Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away.", "profile-builder"); ?>
|
494 |
+
<?php __("Multiple Registration Forms", "profile-builder"); ?>
|
495 |
+
<?php __("Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users.", "profile-builder"); ?>
|
496 |
+
<?php __("Multiple Edit-profile Forms", "profile-builder"); ?>
|
497 |
+
<?php __("Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles.", "profile-builder"); ?>
|
498 |
+
<?php __("Repeater Fields", "profile-builder"); ?>
|
499 |
+
<?php __("Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role.", "profile-builder"); ?>
|
500 |
+
<?php __(" * only available in the %1$sHobbyist and Pro versions%2$s.", "profile-builder"); ?>
|
501 |
+
<?php __("** only available in the %1$sPro version%2$s.", "profile-builder"); ?>
|
502 |
+
<?php __("Load Profile Builder's own CSS file in the front-end:", "profile-builder"); ?>
|
503 |
+
<?php __("You can find the default file here: %1$s", "profile-builder"); ?>
|
504 |
+
<?php __("\"Email Confirmation\" Activated:", "profile-builder"); ?>
|
505 |
+
<?php __("This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module.", "profile-builder"); ?>
|
506 |
+
<?php __("You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s.", "profile-builder"); ?>
|
507 |
+
<?php __("\"Email Confirmation\" Landing Page:", "profile-builder"); ?>
|
508 |
+
<?php __("Existing Pages", "profile-builder"); ?>
|
509 |
+
<?php __("Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user.", "profile-builder"); ?>
|
510 |
+
<?php __("\"Admin Approval\" Activated:", "profile-builder"); ?>
|
511 |
+
<?php __("You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s.", "profile-builder"); ?>
|
512 |
+
<?php __("\"Admin Approval\" on User Role:", "profile-builder"); ?>
|
513 |
+
<?php __("Select on what user roles to activate Admin Approval.", "profile-builder"); ?>
|
514 |
+
<?php __("\"Roles Editor\" Activated:", "profile-builder"); ?>
|
515 |
+
<?php __("You can add / edit user roles at %1$sUsers > Roles Editor%2$s.", "profile-builder"); ?>
|
516 |
+
<?php __("\"Content Restriction\" Activated:", "profile-builder"); ?>
|
517 |
+
<?php __("Set your settings at %1$sProfile Builder > Content Restriction%2$s and use each page / post / custom post type individual meta-box to restrict content.", "profile-builder"); ?>
|
518 |
+
<?php __("\"Admin Approval\" Feature:", "profile-builder"); ?>
|
519 |
+
<?php __("You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s.", "profile-builder"); ?>
|
520 |
+
<?php __("Allow Users to Log in With:", "profile-builder"); ?>
|
521 |
+
<?php __("Username and Email", "profile-builder"); ?>
|
522 |
+
<?php __("Username", "profile-builder"); ?>
|
523 |
+
<?php __("Email", "profile-builder"); ?>
|
524 |
+
<?php __("\"Username and Email\" - users can Log In with both Username and Email.", "profile-builder"); ?>
|
525 |
+
<?php __("\"Username\" - users can Log In only with Username.", "profile-builder"); ?>
|
526 |
+
<?php __("\"Email\" - users can Log In only with Email.", "profile-builder"); ?>
|
527 |
+
<?php __("Minimum Password Length:", "profile-builder"); ?>
|
528 |
+
<?php __("Enter the minimum characters the password should have. Leave empty for no minimum limit", "profile-builder"); ?>
|
529 |
+
<?php __("Minimum Password Strength:", "profile-builder"); ?>
|
530 |
+
<?php __("Disabled", "profile-builder"); ?>
|
531 |
+
<?php __("Manage Fields", "profile-builder"); ?>
|
532 |
+
<?php __("Manage Default and Extra Fields", "profile-builder"); ?>
|
533 |
+
<?php __("Choose one of the supported field types", "profile-builder"); ?>
|
534 |
+
<?php __(". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>.", "profile-builder"); ?>
|
535 |
+
<?php __("Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count", "profile-builder"); ?>
|
536 |
+
<?php __("Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries", "profile-builder"); ?>
|
537 |
+
<?php __("Field Title", "profile-builder"); ?>
|
538 |
+
<?php __("Title of the field", "profile-builder"); ?>
|
539 |
+
<?php __("Field", "profile-builder"); ?>
|
540 |
+
<?php __("Meta-name", "profile-builder"); ?>
|
541 |
+
<?php __("ID", "profile-builder"); ?>
|
542 |
+
<?php __("A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited", "profile-builder"); ?>
|
543 |
+
<?php __("Description", "profile-builder"); ?>
|
544 |
+
<?php __("Enter a (detailed) description of the option for end users to read<br/>Optional", "profile-builder"); ?>
|
545 |
+
<?php __("Row Count", "profile-builder"); ?>
|
546 |
+
<?php __("Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5", "profile-builder"); ?>
|
547 |
+
<?php __("Allowed Image Extensions", "profile-builder"); ?>
|
548 |
+
<?php __("Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)", "profile-builder"); ?>
|
549 |
+
<?php __("Allowed Upload Extensions", "profile-builder"); ?>
|
550 |
+
<?php __("Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)", "profile-builder"); ?>
|
551 |
+
<?php __("Avatar Size", "profile-builder"); ?>
|
552 |
+
<?php __("Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", "profile-builder"); ?>
|
553 |
+
<?php __("Date-format", "profile-builder"); ?>
|
554 |
+
<?php __("Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy", "profile-builder"); ?>
|
555 |
+
<?php __("Terms of Agreement", "profile-builder"); ?>
|
556 |
+
<?php __("Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>", "profile-builder"); ?>
|
557 |
+
<?php __("Options", "profile-builder"); ?>
|
558 |
+
<?php __("Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes", "profile-builder"); ?>
|
559 |
+
<?php __("Enter a comma separated list of labels<br/>Visible for the user", "profile-builder"); ?>
|
560 |
+
<?php __("reCAPTCHA Type", "profile-builder"); ?>
|
561 |
+
<?php __("Choose the <a href=\"https://developers.google.com/recaptcha/docs/versions\" target=\"_blank\">type of reCAPTCHA</a> you wish to add to this site.", "profile-builder"); ?>
|
562 |
+
<?php __("Site Key", "profile-builder"); ?>
|
563 |
+
<?php __("The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>", "profile-builder"); ?>
|
564 |
+
<?php __("Secret Key", "profile-builder"); ?>
|
565 |
+
<?php __("The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>", "profile-builder"); ?>
|
566 |
+
<?php __("Display on PB forms", "profile-builder"); ?>
|
567 |
+
<?php __("PB Login", "profile-builder"); ?>
|
568 |
+
<?php __("PB Register", "profile-builder"); ?>
|
569 |
+
<?php __("PB Recover Password", "profile-builder"); ?>
|
570 |
+
<?php __("Select on which Profile Builder forms to display reCAPTCHA", "profile-builder"); ?>
|
571 |
+
<?php __("Display on default WP forms", "profile-builder"); ?>
|
572 |
+
<?php __("Default WP Login", "profile-builder"); ?>
|
573 |
+
<?php __("Default WP Register", "profile-builder"); ?>
|
574 |
+
<?php __("Default WP Recover Password", "profile-builder"); ?>
|
575 |
+
<?php __("Select on which default WP forms to display reCAPTCHA", "profile-builder"); ?>
|
576 |
+
<?php __("User Roles", "profile-builder"); ?>
|
577 |
+
<?php __("Select which user roles to show to the user ( drag and drop to re-order )", "profile-builder"); ?>
|
578 |
+
<?php __("User Roles Order", "profile-builder"); ?>
|
579 |
+
<?php __("Save the user role order from the user roles checkboxes", "profile-builder"); ?>
|
580 |
+
<?php __("Default Value", "profile-builder"); ?>
|
581 |
+
<?php __("Default value of the field", "profile-builder"); ?>
|
582 |
+
<?php __("Default Option", "profile-builder"); ?>
|
583 |
+
<?php __("Specify the option which should be selected by default", "profile-builder"); ?>
|
584 |
+
<?php __("Default Option(s)", "profile-builder"); ?>
|
585 |
+
<?php __("Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)", "profile-builder"); ?>
|
586 |
+
<?php __("Default option of the field", "profile-builder"); ?>
|
587 |
+
<?php __("Show Currency Symbol", "profile-builder"); ?>
|
588 |
+
<?php __("Whether the currency symbol should be displayed after the currency name in the select option.", "profile-builder"); ?>
|
589 |
+
<?php __("Show Post Type", "profile-builder"); ?>
|
590 |
+
<?php __("Posts from what post type will be displayed in the select.", "profile-builder"); ?>
|
591 |
+
<?php __("Allowable Values", "profile-builder"); ?>
|
592 |
+
<?php __("Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered.", "profile-builder"); ?>
|
593 |
+
<?php __("Error Message", "profile-builder"); ?>
|
594 |
+
<?php __("Set a custom error message that will be displayed to the user.", "profile-builder"); ?>
|
595 |
+
<?php __("Time Format", "profile-builder"); ?>
|
596 |
+
<?php __("Specify the time format.", "profile-builder"); ?>
|
597 |
+
<?php __("Google Maps API Key", "profile-builder"); ?>
|
598 |
+
<?php __("Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used.", "profile-builder"); ?>
|
599 |
+
<?php __("Default Latitude", "profile-builder"); ?>
|
600 |
+
<?php __("The latitude at which the map should be displayed when no pins are attached.", "profile-builder"); ?>
|
601 |
+
<?php __("Default Longitude", "profile-builder"); ?>
|
602 |
+
<?php __("The longitude at which the map should be displayed when no pins are attached.", "profile-builder"); ?>
|
603 |
+
<?php __("Default Zoom Level", "profile-builder"); ?>
|
604 |
+
<?php __("Add a number from 0 to 19. The higher the number the higher the zoom.", "profile-builder"); ?>
|
605 |
+
<?php __("Map Height", "profile-builder"); ?>
|
606 |
+
<?php __("The height of the map.", "profile-builder"); ?>
|
607 |
+
<?php __("Default Content", "profile-builder"); ?>
|
608 |
+
<?php __("Default value of the textarea", "profile-builder"); ?>
|
609 |
+
<?php __("HTML Content", "profile-builder"); ?>
|
610 |
+
<?php __("Add your HTML (or text) content", "profile-builder"); ?>
|
611 |
+
<?php __("Phone Format", "profile-builder"); ?>
|
612 |
+
<?php __("You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces.", "profile-builder"); ?>
|
613 |
+
<?php __("Eg. (###) ###-####", "profile-builder"); ?>
|
614 |
+
<?php __("Empty field won't check for correct phone number.", "profile-builder"); ?>
|
615 |
+
<?php __("Heading Tag", "profile-builder"); ?>
|
616 |
+
<?php __("Change heading field size on front-end forms", "profile-builder"); ?>
|
617 |
+
<?php __("Min Number Value", "profile-builder"); ?>
|
618 |
+
<?php __("Min allowed number value (0 to allow only positive numbers)", "profile-builder"); ?>
|
619 |
+
<?php __("Leave it empty for no min value", "profile-builder"); ?>
|
620 |
+
<?php __("Max Number Value", "profile-builder"); ?>
|
621 |
+
<?php __("Max allowed number value (0 to allow only negative numbers)", "profile-builder"); ?>
|
622 |
+
<?php __("Leave it empty for no max value", "profile-builder"); ?>
|
623 |
+
<?php __("Number Step Value", "profile-builder"); ?>
|
624 |
+
<?php __("Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal", "profile-builder"); ?>
|
625 |
+
<?php __("To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on", "profile-builder"); ?>
|
626 |
+
<?php __("You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)", "profile-builder"); ?>
|
627 |
+
<?php __("Leave it empty for no restriction", "profile-builder"); ?>
|
628 |
+
<?php __("Whether the field is required or not", "profile-builder"); ?>
|
629 |
+
<?php __("Overwrite Existing", "profile-builder"); ?>
|
630 |
+
<?php __("Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk", "profile-builder"); ?>
|
631 |
+
<?php __("Field Properties", "profile-builder"); ?>
|
632 |
+
<?php __("Registration & Edit Profile", "profile-builder"); ?>
|
633 |
+
<?php __("Usernames cannot be changed.", "profile-builder"); ?>
|
634 |
+
<?php __("Nickname", "profile-builder"); ?>
|
635 |
+
<?php __("Display name publicly as", "profile-builder"); ?>
|
636 |
+
<?php __("E-mail", "profile-builder"); ?>
|
637 |
+
<?php __("Website", "profile-builder"); ?>
|
638 |
+
<?php __("AIM", "profile-builder"); ?>
|
639 |
+
<?php __("Yahoo IM", "profile-builder"); ?>
|
640 |
+
<?php __("Jabber / Google Talk", "profile-builder"); ?>
|
641 |
+
<?php __("Biographical Info", "profile-builder"); ?>
|
642 |
+
<?php __("Share a little biographical information to fill out your profile. This may be shown publicly.", "profile-builder"); ?>
|
643 |
+
<?php __("Password", "profile-builder"); ?>
|
644 |
+
<?php __("Type your password.", "profile-builder"); ?>
|
645 |
+
<?php __("Repeat Password", "profile-builder"); ?>
|
646 |
+
<?php __("Type your password again. ", "profile-builder"); ?>
|
647 |
+
<?php __("Blog Details", "profile-builder"); ?>
|
648 |
+
<?php __("Afghanistan", "profile-builder"); ?>
|
649 |
+
<?php __("Aland Islands", "profile-builder"); ?>
|
650 |
+
<?php __("Albania", "profile-builder"); ?>
|
651 |
+
<?php __("Algeria", "profile-builder"); ?>
|
652 |
+
<?php __("American Samoa", "profile-builder"); ?>
|
653 |
+
<?php __("Andorra", "profile-builder"); ?>
|
654 |
+
<?php __("Angola", "profile-builder"); ?>
|
655 |
+
<?php __("Anguilla", "profile-builder"); ?>
|
656 |
+
<?php __("Antarctica", "profile-builder"); ?>
|
657 |
+
<?php __("Antigua and Barbuda", "profile-builder"); ?>
|
658 |
+
<?php __("Argentina", "profile-builder"); ?>
|
659 |
+
<?php __("Armenia", "profile-builder"); ?>
|
660 |
+
<?php __("Aruba", "profile-builder"); ?>
|
661 |
+
<?php __("Australia", "profile-builder"); ?>
|
662 |
+
<?php __("Austria", "profile-builder"); ?>
|
663 |
+
<?php __("Azerbaijan", "profile-builder"); ?>
|
664 |
+
<?php __("Bahamas", "profile-builder"); ?>
|
665 |
+
<?php __("Bahrain", "profile-builder"); ?>
|
666 |
+
<?php __("Bangladesh", "profile-builder"); ?>
|
667 |
+
<?php __("Barbados", "profile-builder"); ?>
|
668 |
+
<?php __("Belarus", "profile-builder"); ?>
|
669 |
+
<?php __("Belgium", "profile-builder"); ?>
|
670 |
+
<?php __("Belize", "profile-builder"); ?>
|
671 |
+
<?php __("Benin", "profile-builder"); ?>
|
672 |
+
<?php __("Bermuda", "profile-builder"); ?>
|
673 |
+
<?php __("Bhutan", "profile-builder"); ?>
|
674 |
+
<?php __("Bolivia", "profile-builder"); ?>
|
675 |
+
<?php __("Bonaire, Saint Eustatius and Saba", "profile-builder"); ?>
|
676 |
+
<?php __("Bosnia and Herzegovina", "profile-builder"); ?>
|
677 |
+
<?php __("Botswana", "profile-builder"); ?>
|
678 |
+
<?php __("Bouvet Island", "profile-builder"); ?>
|
679 |
+
<?php __("Brazil", "profile-builder"); ?>
|
680 |
+
<?php __("British Indian Ocean Territory", "profile-builder"); ?>
|
681 |
+
<?php __("British Virgin Islands", "profile-builder"); ?>
|
682 |
+
<?php __("Brunei", "profile-builder"); ?>
|
683 |
+
<?php __("Bulgaria", "profile-builder"); ?>
|
684 |
+
<?php __("Burkina Faso", "profile-builder"); ?>
|
685 |
+
<?php __("Burundi", "profile-builder"); ?>
|
686 |
+
<?php __("Cambodia", "profile-builder"); ?>
|
687 |
+
<?php __("Cameroon", "profile-builder"); ?>
|
688 |
+
<?php __("Canada", "profile-builder"); ?>
|
689 |
+
<?php __("Cape Verde", "profile-builder"); ?>
|
690 |
+
<?php __("Cayman Islands", "profile-builder"); ?>
|
691 |
+
<?php __("Central African Republic", "profile-builder"); ?>
|
692 |
+
<?php __("Chad", "profile-builder"); ?>
|
693 |
+
<?php __("Chile", "profile-builder"); ?>
|
694 |
+
<?php __("China", "profile-builder"); ?>
|
695 |
+
<?php __("Christmas Island", "profile-builder"); ?>
|
696 |
+
<?php __("Cocos Islands", "profile-builder"); ?>
|
697 |
+
<?php __("Colombia", "profile-builder"); ?>
|
698 |
+
<?php __("Comoros", "profile-builder"); ?>
|
699 |
+
<?php __("Cook Islands", "profile-builder"); ?>
|
700 |
+
<?php __("Costa Rica", "profile-builder"); ?>
|
701 |
+
<?php __("Croatia", "profile-builder"); ?>
|
702 |
+
<?php __("Cuba", "profile-builder"); ?>
|
703 |
+
<?php __("Curacao", "profile-builder"); ?>
|
704 |
+
<?php __("Cyprus", "profile-builder"); ?>
|
705 |
+
<?php __("Czech Republic", "profile-builder"); ?>
|
706 |
+
<?php __("Democratic Republic of the Congo", "profile-builder"); ?>
|
707 |
+
<?php __("Denmark", "profile-builder"); ?>
|
708 |
+
<?php __("Djibouti", "profile-builder"); ?>
|
709 |
+
<?php __("Dominica", "profile-builder"); ?>
|
710 |
+
<?php __("Dominican Republic", "profile-builder"); ?>
|
711 |
+
<?php __("East Timor", "profile-builder"); ?>
|
712 |
+
<?php __("Ecuador", "profile-builder"); ?>
|
713 |
+
<?php __("Egypt", "profile-builder"); ?>
|
714 |
+
<?php __("El Salvador", "profile-builder"); ?>
|
715 |
+
<?php __("Equatorial Guinea", "profile-builder"); ?>
|
716 |
+
<?php __("Eritrea", "profile-builder"); ?>
|
717 |
+
<?php __("Estonia", "profile-builder"); ?>
|
718 |
+
<?php __("Ethiopia", "profile-builder"); ?>
|
719 |
+
<?php __("Falkland Islands", "profile-builder"); ?>
|
720 |
+
<?php __("Faroe Islands", "profile-builder"); ?>
|
721 |
+
<?php __("Fiji", "profile-builder"); ?>
|
722 |
+
<?php __("Finland", "profile-builder"); ?>
|
723 |
+
<?php __("France", "profile-builder"); ?>
|
724 |
+
<?php __("French Guiana", "profile-builder"); ?>
|
725 |
+
<?php __("French Polynesia", "profile-builder"); ?>
|
726 |
+
<?php __("French Southern Territories", "profile-builder"); ?>
|
727 |
+
<?php __("Gabon", "profile-builder"); ?>
|
728 |
+
<?php __("Gambia", "profile-builder"); ?>
|
729 |
+
<?php __("Georgia", "profile-builder"); ?>
|
730 |
+
<?php __("Germany", "profile-builder"); ?>
|
731 |
+
<?php __("Ghana", "profile-builder"); ?>
|
732 |
+
<?php __("Gibraltar", "profile-builder"); ?>
|
733 |
+
<?php __("Greece", "profile-builder"); ?>
|
734 |
+
<?php __("Greenland", "profile-builder"); ?>
|
735 |
+
<?php __("Grenada", "profile-builder"); ?>
|
736 |
+
<?php __("Guadeloupe", "profile-builder"); ?>
|
737 |
+
<?php __("Guam", "profile-builder"); ?>
|
738 |
+
<?php __("Guatemala", "profile-builder"); ?>
|
739 |
+
<?php __("Guernsey", "profile-builder"); ?>
|
740 |
+
<?php __("Guinea", "profile-builder"); ?>
|
741 |
+
<?php __("Guinea-Bissau", "profile-builder"); ?>
|
742 |
+
<?php __("Guyana", "profile-builder"); ?>
|
743 |
+
<?php __("Haiti", "profile-builder"); ?>
|
744 |
+
<?php __("Heard Island and McDonald Islands", "profile-builder"); ?>
|
745 |
+
<?php __("Honduras", "profile-builder"); ?>
|
746 |
+
<?php __("Hong Kong", "profile-builder"); ?>
|
747 |
+
<?php __("Hungary", "profile-builder"); ?>
|
748 |
+
<?php __("Iceland", "profile-builder"); ?>
|
749 |
+
<?php __("India", "profile-builder"); ?>
|
750 |
+
<?php __("Indonesia", "profile-builder"); ?>
|
751 |
+
<?php __("Iran", "profile-builder"); ?>
|
752 |
+
<?php __("Iraq", "profile-builder"); ?>
|
753 |
+
<?php __("Ireland", "profile-builder"); ?>
|
754 |
+
<?php __("Isle of Man", "profile-builder"); ?>
|
755 |
+
<?php __("Israel", "profile-builder"); ?>
|
756 |
+
<?php __("Italy", "profile-builder"); ?>
|
757 |
+
<?php __("Ivory Coast", "profile-builder"); ?>
|
758 |
+
<?php __("Jamaica", "profile-builder"); ?>
|
759 |
+
<?php __("Japan", "profile-builder"); ?>
|
760 |
+
<?php __("Jersey", "profile-builder"); ?>
|
761 |
+
<?php __("Jordan", "profile-builder"); ?>
|
762 |
+
<?php __("Kazakhstan", "profile-builder"); ?>
|
763 |
+
<?php __("Kenya", "profile-builder"); ?>
|
764 |
+
<?php __("Kiribati", "profile-builder"); ?>
|
765 |
+
<?php __("Kosovo", "profile-builder"); ?>
|
766 |
+
<?php __("Kuwait", "profile-builder"); ?>
|
767 |
+
<?php __("Kyrgyzstan", "profile-builder"); ?>
|
768 |
+
<?php __("Laos", "profile-builder"); ?>
|
769 |
+
<?php __("Latvia", "profile-builder"); ?>
|
770 |
+
<?php __("Lebanon", "profile-builder"); ?>
|
771 |
+
<?php __("Lesotho", "profile-builder"); ?>
|
772 |
+
<?php __("Liberia", "profile-builder"); ?>
|
773 |
+
<?php __("Libya", "profile-builder"); ?>
|
774 |
+
<?php __("Liechtenstein", "profile-builder"); ?>
|
775 |
+
<?php __("Lithuania", "profile-builder"); ?>
|
776 |
+
<?php __("Luxembourg", "profile-builder"); ?>
|
777 |
+
<?php __("Macao", "profile-builder"); ?>
|
778 |
+
<?php __("Macedonia", "profile-builder"); ?>
|
779 |
+
<?php __("Madagascar", "profile-builder"); ?>
|
780 |
+
<?php __("Malawi", "profile-builder"); ?>
|
781 |
+
<?php __("Malaysia", "profile-builder"); ?>
|
782 |
+
<?php __("Maldives", "profile-builder"); ?>
|
783 |
+
<?php __("Mali", "profile-builder"); ?>
|
784 |
+
<?php __("Malta", "profile-builder"); ?>
|
785 |
+
<?php __("Marshall Islands", "profile-builder"); ?>
|
786 |
+
<?php __("Martinique", "profile-builder"); ?>
|
787 |
+
<?php __("Mauritania", "profile-builder"); ?>
|
788 |
+
<?php __("Mauritius", "profile-builder"); ?>
|
789 |
+
<?php __("Mayotte", "profile-builder"); ?>
|
790 |
+
<?php __("Mexico", "profile-builder"); ?>
|
791 |
+
<?php __("Micronesia", "profile-builder"); ?>
|
792 |
+
<?php __("Moldova", "profile-builder"); ?>
|
793 |
+
<?php __("Monaco", "profile-builder"); ?>
|
794 |
+
<?php __("Mongolia", "profile-builder"); ?>
|
795 |
+
<?php __("Montenegro", "profile-builder"); ?>
|
796 |
+
<?php __("Montserrat", "profile-builder"); ?>
|
797 |
+
<?php __("Morocco", "profile-builder"); ?>
|
798 |
+
<?php __("Mozambique", "profile-builder"); ?>
|
799 |
+
<?php __("Myanmar", "profile-builder"); ?>
|
800 |
+
<?php __("Namibia", "profile-builder"); ?>
|
801 |
+
<?php __("Nauru", "profile-builder"); ?>
|
802 |
+
<?php __("Nepal", "profile-builder"); ?>
|
803 |
+
<?php __("Netherlands", "profile-builder"); ?>
|
804 |
+
<?php __("New Caledonia", "profile-builder"); ?>
|
805 |
+
<?php __("New Zealand", "profile-builder"); ?>
|
806 |
+
<?php __("Nicaragua", "profile-builder"); ?>
|
807 |
+
<?php __("Niger", "profile-builder"); ?>
|
808 |
+
<?php __("Nigeria", "profile-builder"); ?>
|
809 |
+
<?php __("Niue", "profile-builder"); ?>
|
810 |
+
<?php __("Norfolk Island", "profile-builder"); ?>
|
811 |
+
<?php __("North Korea", "profile-builder"); ?>
|
812 |
+
<?php __("Northern Mariana Islands", "profile-builder"); ?>
|
813 |
+
<?php __("Norway", "profile-builder"); ?>
|
814 |
+
<?php __("Oman", "profile-builder"); ?>
|
815 |
+
<?php __("Pakistan", "profile-builder"); ?>
|
816 |
+
<?php __("Palau", "profile-builder"); ?>
|
817 |
+
<?php __("Palestinian Territory", "profile-builder"); ?>
|
818 |
+
<?php __("Panama", "profile-builder"); ?>
|
819 |
+
<?php __("Papua New Guinea", "profile-builder"); ?>
|
820 |
+
<?php __("Paraguay", "profile-builder"); ?>
|
821 |
+
<?php __("Peru", "profile-builder"); ?>
|
822 |
+
<?php __("Philippines", "profile-builder"); ?>
|
823 |
+
<?php __("Pitcairn", "profile-builder"); ?>
|
824 |
+
<?php __("Poland", "profile-builder"); ?>
|
825 |
+
<?php __("Portugal", "profile-builder"); ?>
|
826 |
+
<?php __("Puerto Rico", "profile-builder"); ?>
|
827 |
+
<?php __("Qatar", "profile-builder"); ?>
|
828 |
+
<?php __("Republic of the Congo", "profile-builder"); ?>
|
829 |
+
<?php __("Reunion", "profile-builder"); ?>
|
830 |
+
<?php __("Romania", "profile-builder"); ?>
|
831 |
+
<?php __("Russia", "profile-builder"); ?>
|
832 |
+
<?php __("Rwanda", "profile-builder"); ?>
|
833 |
+
<?php __("Saint Barthelemy", "profile-builder"); ?>
|
834 |
+
<?php __("Saint Helena", "profile-builder"); ?>
|
835 |
+
<?php __("Saint Kitts and Nevis", "profile-builder"); ?>
|
836 |
+
<?php __("Saint Lucia", "profile-builder"); ?>
|
837 |
+
<?php __("Saint Martin", "profile-builder"); ?>
|
838 |
+
<?php __("Saint Pierre and Miquelon", "profile-builder"); ?>
|
839 |
+
<?php __("Saint Vincent and the Grenadines", "profile-builder"); ?>
|
840 |
+
<?php __("Samoa", "profile-builder"); ?>
|
841 |
+
<?php __("San Marino", "profile-builder"); ?>
|
842 |
+
<?php __("Sao Tome and Principe", "profile-builder"); ?>
|
843 |
+
<?php __("Saudi Arabia", "profile-builder"); ?>
|
844 |
+
<?php __("Senegal", "profile-builder"); ?>
|
845 |
+
<?php __("Serbia", "profile-builder"); ?>
|
846 |
+
<?php __("Seychelles", "profile-builder"); ?>
|
847 |
+
<?php __("Sierra Leone", "profile-builder"); ?>
|
848 |
+
<?php __("Singapore", "profile-builder"); ?>
|
849 |
+
<?php __("Sint Maarten", "profile-builder"); ?>
|
850 |
+
<?php __("Slovakia", "profile-builder"); ?>
|
851 |
+
<?php __("Slovenia", "profile-builder"); ?>
|
852 |
+
<?php __("Solomon Islands", "profile-builder"); ?>
|
853 |
+
<?php __("Somalia", "profile-builder"); ?>
|
854 |
+
<?php __("South Africa", "profile-builder"); ?>
|
855 |
+
<?php __("South Georgia and the South Sandwich Islands", "profile-builder"); ?>
|
856 |
+
<?php __("South Korea", "profile-builder"); ?>
|
857 |
+
<?php __("South Sudan", "profile-builder"); ?>
|
858 |
+
<?php __("Spain", "profile-builder"); ?>
|
859 |
+
<?php __("Sri Lanka", "profile-builder"); ?>
|
860 |
+
<?php __("Sudan", "profile-builder"); ?>
|
861 |
+
<?php __("Suriname", "profile-builder"); ?>
|
862 |
+
<?php __("Svalbard and Jan Mayen", "profile-builder"); ?>
|
863 |
+
<?php __("Swaziland", "profile-builder"); ?>
|
864 |
+
<?php __("Sweden", "profile-builder"); ?>
|
865 |
+
<?php __("Switzerland", "profile-builder"); ?>
|
866 |
+
<?php __("Syria", "profile-builder"); ?>
|
867 |
+
<?php __("Taiwan", "profile-builder"); ?>
|
868 |
+
<?php __("Tajikistan", "profile-builder"); ?>
|
869 |
+
<?php __("Tanzania", "profile-builder"); ?>
|
870 |
+
<?php __("Thailand", "profile-builder"); ?>
|
871 |
+
<?php __("Togo", "profile-builder"); ?>
|
872 |
+
<?php __("Tokelau", "profile-builder"); ?>
|
873 |
+
<?php __("Tonga", "profile-builder"); ?>
|
874 |
+
<?php __("Trinidad and Tobago", "profile-builder"); ?>
|
875 |
+
<?php __("Tunisia", "profile-builder"); ?>
|
876 |
+
<?php __("Turkey", "profile-builder"); ?>
|
877 |
+
<?php __("Turkmenistan", "profile-builder"); ?>
|
878 |
+
<?php __("Turks and Caicos Islands", "profile-builder"); ?>
|
879 |
+
<?php __("Tuvalu", "profile-builder"); ?>
|
880 |
+
<?php __("U.S. Virgin Islands", "profile-builder"); ?>
|
881 |
+
<?php __("Uganda", "profile-builder"); ?>
|
882 |
+
<?php __("Ukraine", "profile-builder"); ?>
|
883 |
+
<?php __("United Arab Emirates", "profile-builder"); ?>
|
884 |
+
<?php __("United Kingdom", "profile-builder"); ?>
|
885 |
+
<?php __("United States", "profile-builder"); ?>
|
886 |
+
<?php __("United States Minor Outlying Islands", "profile-builder"); ?>
|
887 |
+
<?php __("Uruguay", "profile-builder"); ?>
|
888 |
+
<?php __("Uzbekistan", "profile-builder"); ?>
|
889 |
+
<?php __("Vanuatu", "profile-builder"); ?>
|
890 |
+
<?php __("Vatican", "profile-builder"); ?>
|
891 |
+
<?php __("Venezuela", "profile-builder"); ?>
|
892 |
+
<?php __("Vietnam", "profile-builder"); ?>
|
893 |
+
<?php __("Wallis and Futuna", "profile-builder"); ?>
|
894 |
+
<?php __("Western Sahara", "profile-builder"); ?>
|
895 |
+
<?php __("Yemen", "profile-builder"); ?>
|
896 |
+
<?php __("Zambia", "profile-builder"); ?>
|
897 |
+
<?php __("Zimbabwe", "profile-builder"); ?>
|
898 |
+
<?php __("Albania Lek", "profile-builder"); ?>
|
899 |
+
<?php __("Afghanistan Afghani", "profile-builder"); ?>
|
900 |
+
<?php __("Argentina Peso", "profile-builder"); ?>
|
901 |
+
<?php __("Australia Dollar", "profile-builder"); ?>
|
902 |
+
<?php __("Azerbaijan New Manat", "profile-builder"); ?>
|
903 |
+
<?php __("Bahamas Dollar", "profile-builder"); ?>
|
904 |
+
<?php __("Barbados Dollar", "profile-builder"); ?>
|
905 |
+
<?php __("Bangladeshi taka", "profile-builder"); ?>
|
906 |
+
<?php __("Belarus Ruble", "profile-builder"); ?>
|
907 |
+
<?php __("Belize Dollar", "profile-builder"); ?>
|
908 |
+
<?php __("Bermuda Dollar", "profile-builder"); ?>
|
909 |
+
<?php __("Bolivia Boliviano", "profile-builder"); ?>
|
910 |
+
<?php __("Bosnia and Herzegovina Convertible Marka", "profile-builder"); ?>
|
911 |
+
<?php __("Botswana Pula", "profile-builder"); ?>
|
912 |
+
<?php __("Bulgaria Lev", "profile-builder"); ?>
|
913 |
+
<?php __("Brazil Real", "profile-builder"); ?>
|
914 |
+
<?php __("Brunei Darussalam Dollar", "profile-builder"); ?>
|
915 |
+
<?php __("Cambodia Riel", "profile-builder"); ?>
|
916 |
+
<?php __("Canada Dollar", "profile-builder"); ?>
|
917 |
+
<?php __("Cayman Islands Dollar", "profile-builder"); ?>
|
918 |
+
<?php __("Chile Peso", "profile-builder"); ?>
|
919 |
+
<?php __("China Yuan Renminbi", "profile-builder"); ?>
|
920 |
+
<?php __("Colombia Peso", "profile-builder"); ?>
|
921 |
+
<?php __("Costa Rica Colon", "profile-builder"); ?>
|
922 |
+
<?php __("Croatia Kuna", "profile-builder"); ?>
|
923 |
+
<?php __("Cuba Peso", "profile-builder"); ?>
|
924 |
+
<?php __("Czech Republic Koruna", "profile-builder"); ?>
|
925 |
+
<?php __("Denmark Krone", "profile-builder"); ?>
|
926 |
+
<?php __("Dominican Republic Peso", "profile-builder"); ?>
|
927 |
+
<?php __("East Caribbean Dollar", "profile-builder"); ?>
|
928 |
+
<?php __("Egypt Pound", "profile-builder"); ?>
|
929 |
+
<?php __("El Salvador Colon", "profile-builder"); ?>
|
930 |
+
<?php __("Estonia Kroon", "profile-builder"); ?>
|
931 |
+
<?php __("Euro", "profile-builder"); ?>
|
932 |
+
<?php __("Falkland Islands (Malvinas) Pound", "profile-builder"); ?>
|
933 |
+
<?php __("Fiji Dollar", "profile-builder"); ?>
|
934 |
+
<?php __("Ghana Cedis", "profile-builder"); ?>
|
935 |
+
<?php __("Gibraltar Pound", "profile-builder"); ?>
|
936 |
+
<?php __("Guatemala Quetzal", "profile-builder"); ?>
|
937 |
+
<?php __("Guernsey Pound", "profile-builder"); ?>
|
938 |
+
<?php __("Guyana Dollar", "profile-builder"); ?>
|
939 |
+
<?php __("Honduras Lempira", "profile-builder"); ?>
|
940 |
+
<?php __("Hong Kong Dollar", "profile-builder"); ?>
|
941 |
+
<?php __("Hungary Forint", "profile-builder"); ?>
|
942 |
+
<?php __("Iceland Krona", "profile-builder"); ?>
|
943 |
+
<?php __("India Rupee", "profile-builder"); ?>
|
944 |
+
<?php __("Indonesia Rupiah", "profile-builder"); ?>
|
945 |
+
<?php __("Iran Rial", "profile-builder"); ?>
|
946 |
+
<?php __("Isle of Man Pound", "profile-builder"); ?>
|
947 |
+
<?php __("Israel Shekel", "profile-builder"); ?>
|
948 |
+
<?php __("Jamaica Dollar", "profile-builder"); ?>
|
949 |
+
<?php __("Japan Yen", "profile-builder"); ?>
|
950 |
+
<?php __("Jersey Pound", "profile-builder"); ?>
|
951 |
+
<?php __("Kazakhstan Tenge", "profile-builder"); ?>
|
952 |
+
<?php __("Korea (North) Won", "profile-builder"); ?>
|
953 |
+
<?php __("Korea (South) Won", "profile-builder"); ?>
|
954 |
+
<?php __("Kyrgyzstan Som", "profile-builder"); ?>
|
955 |
+
<?php __("Laos Kip", "profile-builder"); ?>
|
956 |
+
<?php __("Latvia Lat", "profile-builder"); ?>
|
957 |
+
<?php __("Lebanon Pound", "profile-builder"); ?>
|
958 |
+
<?php __("Liberia Dollar", "profile-builder"); ?>
|
959 |
+
<?php __("Lithuania Litas", "profile-builder"); ?>
|
960 |
+
<?php __("Macedonia Denar", "profile-builder"); ?>
|
961 |
+
<?php __("Malaysia Ringgit", "profile-builder"); ?>
|
962 |
+
<?php __("Mauritius Rupee", "profile-builder"); ?>
|
963 |
+
<?php __("Mexico Peso", "profile-builder"); ?>
|
964 |
+
<?php __("Mongolia Tughrik", "profile-builder"); ?>
|
965 |
+
<?php __("Mozambique Metical", "profile-builder"); ?>
|
966 |
+
<?php __("Namibia Dollar", "profile-builder"); ?>
|
967 |
+
<?php __("Nepal Rupee", "profile-builder"); ?>
|
968 |
+
<?php __("Netherlands Antilles Guilder", "profile-builder"); ?>
|
969 |
+
<?php __("New Zealand Dollar", "profile-builder"); ?>
|
970 |
+
<?php __("Nicaragua Cordoba", "profile-builder"); ?>
|
971 |
+
<?php __("Nigeria Naira", "profile-builder"); ?>
|
972 |
+
<?php __("Norway Krone", "profile-builder"); ?>
|
973 |
+
<?php __("Oman Rial", "profile-builder"); ?>
|
974 |
+
<?php __("Pakistan Rupee", "profile-builder"); ?>
|
975 |
+
<?php __("Panama Balboa", "profile-builder"); ?>
|
976 |
+
<?php __("Paraguay Guarani", "profile-builder"); ?>
|
977 |
+
<?php __("Peru Nuevo Sol", "profile-builder"); ?>
|
978 |
+
<?php __("Philippines Peso", "profile-builder"); ?>
|
979 |
+
<?php __("Poland Zloty", "profile-builder"); ?>
|
980 |
+
<?php __("Qatar Riyal", "profile-builder"); ?>
|
981 |
+
<?php __("Romania New Leu", "profile-builder"); ?>
|
982 |
+
<?php __("Russia Ruble", "profile-builder"); ?>
|
983 |
+
<?php __("Saint Helena Pound", "profile-builder"); ?>
|
984 |
+
<?php __("Saudi Arabia Riyal", "profile-builder"); ?>
|
985 |
+
<?php __("Serbia Dinar", "profile-builder"); ?>
|
986 |
+
<?php __("Seychelles Rupee", "profile-builder"); ?>
|
987 |
+
<?php __("Singapore Dollar", "profile-builder"); ?>
|
988 |
+
<?php __("Solomon Islands Dollar", "profile-builder"); ?>
|
989 |
+
<?php __("Somalia Shilling", "profile-builder"); ?>
|
990 |
+
<?php __("South Africa Rand", "profile-builder"); ?>
|
991 |
+
<?php __("Sri Lanka Rupee", "profile-builder"); ?>
|
992 |
+
<?php __("Sweden Krona", "profile-builder"); ?>
|
993 |
+
<?php __("Switzerland Franc", "profile-builder"); ?>
|
994 |
+
<?php __("Suriname Dollar", "profile-builder"); ?>
|
995 |
+
<?php __("Syria Pound", "profile-builder"); ?>
|
996 |
+
<?php __("Taiwan New Dollar", "profile-builder"); ?>
|
997 |
+
<?php __("Thailand Baht", "profile-builder"); ?>
|
998 |
+
<?php __("Trinidad and Tobago Dollar", "profile-builder"); ?>
|
999 |
+
<?php __("Turkey Lira", "profile-builder"); ?>
|
1000 |
+
<?php __("Tuvalu Dollar", "profile-builder"); ?>
|
1001 |
+
<?php __("Ukraine Hryvna", "profile-builder"); ?>
|
1002 |
+
<?php __("United Kingdom Pound", "profile-builder"); ?>
|
1003 |
+
<?php __("Uganda Shilling", "profile-builder"); ?>
|
1004 |
+
<?php __("US Dollar", "profile-builder"); ?>
|
1005 |
+
<?php __("Uruguay Peso", "profile-builder"); ?>
|
1006 |
+
<?php __("Uzbekistan Som", "profile-builder"); ?>
|
1007 |
+
<?php __("Venezuela Bolivar", "profile-builder"); ?>
|
1008 |
+
<?php __("Viet Nam Dong", "profile-builder"); ?>
|
1009 |
+
<?php __("Yemen Rial", "profile-builder"); ?>
|
1010 |
+
<?php __("Zimbabwe Dollar", "profile-builder"); ?>
|
1011 |
+
<?php __("You must select a field\n", "profile-builder"); ?>
|
1012 |
+
<?php __("Please choose a different field type as this one already exists in your form (must be unique)\n", "profile-builder"); ?>
|
1013 |
+
<?php __("The entered avatar size is not between 20 and 200\n", "profile-builder"); ?>
|
1014 |
+
<?php __("The entered avatar size is not numerical\n", "profile-builder"); ?>
|
1015 |
+
<?php __("The entered row number is not numerical\n", "profile-builder"); ?>
|
1016 |
+
<?php __("You must enter a value for the row number\n", "profile-builder"); ?>
|
1017 |
+
<?php __("You must enter the site key\n", "profile-builder"); ?>
|
1018 |
+
<?php __("You must enter the secret key\n", "profile-builder"); ?>
|
1019 |
+
<?php __("The entered value for the Datepicker is not a valid date-format\n", "profile-builder"); ?>
|
1020 |
+
<?php __("You must enter a value for the date-format\n", "profile-builder"); ?>
|
1021 |
+
<?php __("The meta-name cannot be empty\n", "profile-builder"); ?>
|
1022 |
+
<?php __("That meta-name is already in use\n", "profile-builder"); ?>
|
1023 |
+
<?php __("The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n", "profile-builder"); ?>
|
1024 |
+
<?php __("The following option(s) did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
|
1025 |
+
<?php __("The following option did not coincide with the ones in the options list: %s\n", "profile-builder"); ?>
|
1026 |
+
<?php __("Please select at least one user role\n", "profile-builder"); ?>
|
1027 |
+
<?php __("That field is already added in this form\n", "profile-builder"); ?>
|
1028 |
+
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>", "profile-builder"); ?>
|
1029 |
+
<?php __("Use these shortcodes on the pages you want the forms to be displayed:", "profile-builder"); ?>
|
1030 |
+
<?php __("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.", "profile-builder"); ?>
|
1031 |
+
<?php __("With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module.", "profile-builder"); ?>
|
1032 |
+
<?php __("Search Location", "profile-builder"); ?>
|
1033 |
+
<?php __("Paid Accounts", "profile-builder"); ?>
|
1034 |
+
<?php __("Paid Member Subscriptions - a free WordPress plugin", "profile-builder"); ?>
|
1035 |
+
<?php __("With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts.", "profile-builder"); ?>
|
1036 |
+
<?php __("Paid & Free Subscriptions", "profile-builder"); ?>
|
1037 |
+
<?php __("Restrict Content", "profile-builder"); ?>
|
1038 |
+
<?php __("Member Management", "profile-builder"); ?>
|
1039 |
+
<?php __("Email Templates", "profile-builder"); ?>
|
1040 |
+
<?php __("Account Management", "profile-builder"); ?>
|
1041 |
+
<?php __("Subscription Management", "profile-builder"); ?>
|
1042 |
+
<?php __("Payment Management", "profile-builder"); ?>
|
1043 |
+
<?php __("Plugin is Active", "profile-builder"); ?>
|
1044 |
+
<?php __("Plugin has been activated", "profile-builder"); ?>
|
1045 |
+
<?php __("Plugin has been deactivated.", "profile-builder"); ?>
|
1046 |
+
<?php __("Accept user payments, create subscription plans and restrict content on your website.", "profile-builder"); ?>
|
1047 |
+
<?php __("Step by Step Quick Setup", "profile-builder"); ?>
|
1048 |
+
<?php __("Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s", "profile-builder"); ?>
|
1049 |
+
<?php __("Register Your Version", "profile-builder"); ?>
|
1050 |
+
<?php __("Register Version", "profile-builder"); ?>
|
1051 |
+
<?php __("Profile Builder Register", "profile-builder"); ?>
|
1052 |
+
<?php __("Register your version of %s", "profile-builder"); ?>
|
1053 |
+
<?php __("Now that you acquired a copy of %s, you should take the time and register it with the serial number you received", "profile-builder"); ?>
|
1054 |
+
<?php __("If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support.", "profile-builder"); ?>
|
1055 |
+
<?php __(" Serial Number:", "profile-builder"); ?>
|
1056 |
+
<?php __("The serial number was successfully validated!", "profile-builder"); ?>
|
1057 |
+
<?php __("The serial number entered couldn't be validated!", "profile-builder"); ?>
|
1058 |
+
<?php __("The serial number is about to expire soon!", "profile-builder"); ?>
|
1059 |
+
<?php __(" Your serial number is about to expire, please %1$s Renew Your License%2$s.", "profile-builder"); ?>
|
1060 |
+
<?php __("The serial number couldn't be validated because it expired!", "profile-builder"); ?>
|
1061 |
+
<?php __(" Your serial number is expired, please %1$s Renew Your License%2$s.", "profile-builder"); ?>
|
1062 |
+
<?php __("The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!", "profile-builder"); ?>
|
1063 |
+
<?php __("(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)", "profile-builder"); ?>
|
1064 |
+
<?php __("<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>", "profile-builder"); ?>
|
1065 |
+
<?php __("<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s</p>", "profile-builder"); ?>
|
1066 |
+
<?php __("<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s</p>", "profile-builder"); ?>
|
1067 |
+
<?php __("Strength indicator", "profile-builder"); ?>
|
1068 |
+
<?php __("Very Weak", "profile-builder"); ?>
|
1069 |
+
<?php __("Minimum length of %d characters.", "profile-builder"); ?>
|
1070 |
+
<?php __("The password must have a minimum strength of %s.", "profile-builder"); ?>
|
1071 |
+
<?php __("This field is required", "profile-builder"); ?>
|
1072 |
+
<?php __("Please enter a (valid) reCAPTCHA value", "profile-builder"); ?>
|
1073 |
+
<?php __("Incorrect phone number", "profile-builder"); ?>
|
1074 |
+
<?php __("Save Changes", "profile-builder"); ?>
|
1075 |
+
<?php __("Content", "profile-builder"); ?>
|
1076 |
+
<?php __("To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s", "profile-builder"); ?>
|
1077 |
+
<?php __("To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s", "profile-builder"); ?>
|
1078 |
+
<?php __("<br><br>Also, you will be able to visit your site at ", "profile-builder"); ?>
|
1079 |
+
<?php __("<br><br>You can visit your site at ", "profile-builder"); ?>
|
1080 |
+
<?php __("You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s", "profile-builder"); ?>
|
1081 |
+
<?php __("The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form.", "profile-builder"); ?>
|
1082 |
+
<?php __("Only an administrator can add new users.", "profile-builder"); ?>
|
1083 |
+
<?php __("Users can register themselves or you can manually create users here.", "profile-builder"); ?>
|
1084 |
+
<?php __("This message is only visible by administrators", "profile-builder"); ?>
|
1085 |
+
<?php __("Users cannot currently register themselves, but you can manually create users here.", "profile-builder"); ?>
|
1086 |
+
<?php __("You are currently logged in as %1s. You don't need another account. %2s", "profile-builder"); ?>
|
1087 |
+
<?php __("Log out of this account.", "profile-builder"); ?>
|
1088 |
+
<?php __("You must be logged in to edit your profile.", "profile-builder"); ?>
|
1089 |
+
<?php __("You are not allowed to do this.", "profile-builder"); ?>
|
1090 |
+
<?php __("The account %1s has been successfully created!", "profile-builder"); ?>
|
1091 |
+
<?php __("Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link.", "profile-builder"); ?>
|
1092 |
+
<?php __("Before you can access your account %1s, an administrator has to approve it. You will be notified via email.", "profile-builder"); ?>
|
1093 |
+
<?php __("Your profile has been successfully updated!", "profile-builder"); ?>
|
1094 |
+
<?php __("There was an error in the submitted form", "profile-builder"); ?>
|
1095 |
+
<?php __("Add User", "profile-builder"); ?>
|
1096 |
+
<?php __("Send these credentials via email.", "profile-builder"); ?>
|
1097 |
+
<?php __("User to edit:", "profile-builder"); ?>
|
1098 |
+
<?php __("Something went wrong. Please try again!", "profile-builder"); ?>
|
1099 |
+
<?php __("ERROR", "profile-builder"); ?>
|
1100 |
+
<?php __("The password you entered is incorrect.", "profile-builder"); ?>
|
1101 |
+
<?php __("Password Lost and Found.", "profile-builder"); ?>
|
1102 |
+
<?php __("Lost your password", "profile-builder"); ?>
|
1103 |
+
<?php __("Invalid username.", "profile-builder"); ?>
|
1104 |
+
<?php __("username", "profile-builder"); ?>
|
1105 |
+
<?php __("email", "profile-builder"); ?>
|
1106 |
+
<?php __("username or email", "profile-builder"); ?>
|
1107 |
+
<?php __("Both fields are empty.", "profile-builder"); ?>
|
1108 |
+
<?php __("Username or Email", "profile-builder"); ?>
|
1109 |
+
<?php __("Lost your password?", "profile-builder"); ?>
|
1110 |
+
<?php __("Log out of this account", "profile-builder"); ?>
|
1111 |
+
<?php __("Log out", "profile-builder"); ?>
|
1112 |
+
<?php __("You are currently logged in as %1$s. %2$s", "profile-builder"); ?>
|
1113 |
+
<?php __("You are currently logged in as %s. ", "profile-builder"); ?>
|
1114 |
+
<?php __("Log out »", "profile-builder"); ?>
|
1115 |
+
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature.", "profile-builder"); ?>
|
1116 |
+
<?php __("Reset Password", "profile-builder"); ?>
|
1117 |
+
<?php __("Please enter your email address.", "profile-builder"); ?>
|
1118 |
+
<?php __("Please enter your username or email address.", "profile-builder"); ?>
|
1119 |
+
<?php __("Username or E-mail", "profile-builder"); ?>
|
1120 |
+
<?php __("You will receive a link to create a new password via email.", "profile-builder"); ?>
|
1121 |
+
<?php __("Get New Password", "profile-builder"); ?>
|
1122 |
+
<?php __("You are already logged in. You can change your password on the edit profile form.", "profile-builder"); ?>
|
1123 |
+
<?php __("The username entered wasn't found in the database!", "profile-builder"); ?>
|
1124 |
+
<?php __("Please check that you entered the correct username.", "profile-builder"); ?>
|
1125 |
+
<?php __("Check your e-mail for the confirmation link.", "profile-builder"); ?>
|
1126 |
+
<?php __("The email address entered wasn't found in the database!", "profile-builder"); ?>
|
1127 |
+
<?php __("Please check that you entered the correct email address.", "profile-builder"); ?>
|
1128 |
+
<?php __("Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s", "profile-builder"); ?>
|
1129 |
+
<?php __("Password Reset from \"%1$s\"", "profile-builder"); ?>
|
1130 |
+
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1131 |
+
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
1132 |
+
<?php __("The password must have a minimum strength of %s", "profile-builder"); ?>
|
1133 |
+
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
1134 |
+
<?php __("You have successfully reset your password.", "profile-builder"); ?>
|
1135 |
+
<?php __("Password Successfully Reset for %1$s on \"%2$s\"", "profile-builder"); ?>
|
1136 |
+
<?php __("%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s", "profile-builder"); ?>
|
1137 |
+
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
1138 |
+
<?php __("ERROR:", "profile-builder"); ?>
|
1139 |
+
<?php __("Invalid key!", "profile-builder"); ?>
|
1140 |
+
<?php __("Invalid activation key!", "profile-builder"); ?>
|
1141 |
+
<?php __("This username is now active!", "profile-builder"); ?>
|
1142 |
+
<?php __("Could not create user!", "profile-builder"); ?>
|
1143 |
+
<?php __("This username is already activated!", "profile-builder"); ?>
|
1144 |
+
<?php __("Your email was successfully confirmed.", "profile-builder"); ?>
|
1145 |
+
<?php __("Before you can access your account, an administrator needs to approve it. You will be notified via email.", "profile-builder"); ?>
|
1146 |
+
<?php __("There was an error while trying to activate the user.", "profile-builder"); ?>
|
1147 |
+
<?php __("Modules", "profile-builder"); ?>
|
1148 |
+
<?php __("Here you can activate / deactivate available modules for Profile Builder.", "profile-builder"); ?>
|
1149 |
+
<?php __("Name/Description", "profile-builder"); ?>
|
1150 |
+
<?php __("Status", "profile-builder"); ?>
|
1151 |
+
<?php __("Active", "profile-builder"); ?>
|
1152 |
+
<?php __("Inactive", "profile-builder"); ?>
|
1153 |
+
<?php __("Admin Email Customizer", "profile-builder"); ?>
|
1154 |
+
<?php __("User Email Customizer", "profile-builder"); ?>
|
1155 |
+
<?php __("Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
|
1156 |
+
<?php __("Admin Approval", "profile-builder"); ?>
|
1157 |
+
<?php __("Do you want to", "profile-builder"); ?>
|
1158 |
+
<?php __("Your session has expired! Please refresh the page and try again", "profile-builder"); ?>
|
1159 |
+
<?php __("User successfully approved!", "profile-builder"); ?>
|
1160 |
+
<?php __("User successfully unapproved!", "profile-builder"); ?>
|
1161 |
+
<?php __("User successfully deleted!", "profile-builder"); ?>
|
1162 |
+
<?php __("You either don't have permission for that action or there was an error!", "profile-builder"); ?>
|
1163 |
+
<?php __("Your session has expired! Please refresh the page and try again.", "profile-builder"); ?>
|
1164 |
+
<?php __("Users successfully approved!", "profile-builder"); ?>
|
1165 |
+
<?php __("Users successfully unapproved!", "profile-builder"); ?>
|
1166 |
+
<?php __("Users successfully deleted!", "profile-builder"); ?>
|
1167 |
+
<?php __("Your account on %1$s has been approved!", "profile-builder"); ?>
|
1168 |
+
<?php __("approved", "profile-builder"); ?>
|
1169 |
+
<?php __("An administrator has just approved your account on %1$s (%2$s).", "profile-builder"); ?>
|
1170 |
+
<?php __("Your account on %1$s has been unapproved!", "profile-builder"); ?>
|
1171 |
+
<?php __("unapproved", "profile-builder"); ?>
|
1172 |
+
<?php __("An administrator has just unapproved your account on %1$s (%2$s).", "profile-builder"); ?>
|
1173 |
+
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature.", "profile-builder"); ?>
|
1174 |
+
<?php __("Your account has been successfully created!", "profile-builder"); ?>
|
1175 |
+
<?php __("The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. ", "profile-builder"); ?>
|
1176 |
+
<?php __("delete this user?", "profile-builder"); ?>
|
1177 |
+
<?php __("unapprove this user?", "profile-builder"); ?>
|
1178 |
+
<?php __("Unapprove", "profile-builder"); ?>
|
1179 |
+
<?php __("approve this user?", "profile-builder"); ?>
|
1180 |
+
<?php __("Approve", "profile-builder"); ?>
|
1181 |
+
<?php __("Firstname", "profile-builder"); ?>
|
1182 |
+
<?php __("Lastname", "profile-builder"); ?>
|
1183 |
+
<?php __("Role", "profile-builder"); ?>
|
1184 |
+
<?php __("Registered", "profile-builder"); ?>
|
1185 |
+
<?php __("User-status", "profile-builder"); ?>
|
1186 |
+
<?php __("Do you want to bulk approve the selected users?", "profile-builder"); ?>
|
1187 |
+
<?php __("Do you want to bulk unapprove the selected users?", "profile-builder"); ?>
|
1188 |
+
<?php __("Do you want to bulk delete the selected users?", "profile-builder"); ?>
|
1189 |
+
<?php __("Sorry, but you don't have permission to do that!", "profile-builder"); ?>
|
1190 |
+
<?php __("Approved", "profile-builder"); ?>
|
1191 |
+
<?php __("Unapproved", "profile-builder"); ?>
|
1192 |
+
<?php __("All Users", "profile-builder"); ?>
|
1193 |
+
<?php __("Conditional Logic", "profile-builder"); ?>
|
1194 |
+
<?php __("Conditional Rules", "profile-builder"); ?>
|
1195 |
+
<?php __("This field has conditional logic enabled.", "profile-builder"); ?>
|
1196 |
+
<?php __("You must be logged in to view this content.", "profile-builder"); ?>
|
1197 |
+
<?php __("This content is restricted for your user role.", "profile-builder"); ?>
|
1198 |
+
<?php __("Profile Builder Content Restriction", "profile-builder"); ?>
|
1199 |
+
<?php __("Display Options", "profile-builder"); ?>
|
1200 |
+
<?php __("Message", "profile-builder"); ?>
|
1201 |
+
<?php __("Redirect", "profile-builder"); ?>
|
1202 |
+
<?php __("Type of Restriction", "profile-builder"); ?>
|
1203 |
+
<?php __("Settings Default", "profile-builder"); ?>
|
1204 |
+
<?php __("Display For", "profile-builder"); ?>
|
1205 |
+
<?php __("Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role.", "profile-builder"); ?>
|
1206 |
+
<?php __("Checking any user role will show this %s only to users that have one of those user roles assigned.", "profile-builder"); ?>
|
1207 |
+
<?php __("Restriction Redirect URL", "profile-builder"); ?>
|
1208 |
+
<?php __("Enable Custom Redirect URL", "profile-builder"); ?>
|
1209 |
+
<?php __("Check if you wish to add a custom redirect URL for this %s.", "profile-builder"); ?>
|
1210 |
+
<?php __("Custom Redirect URL", "profile-builder"); ?>
|
1211 |
+
<?php __("Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly.", "profile-builder"); ?>
|
1212 |
+
<?php __("Restriction Messages", "profile-builder"); ?>
|
1213 |
+
<?php __("Enable Custom Messages", "profile-builder"); ?>
|
1214 |
+
<?php __("Check if you wish to add custom messages for this %s.", "profile-builder"); ?>
|
1215 |
+
<?php __("Messages for logged-out users", "profile-builder"); ?>
|
1216 |
+
<?php __("Messages for logged-in users", "profile-builder"); ?>
|
1217 |
+
<?php __("If you select \"Message\", the post's content will be protected by being replaced with a custom message.", "profile-builder"); ?>
|
1218 |
+
<?php __("If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content.", "profile-builder"); ?>
|
1219 |
+
<?php __("Redirect URL", "profile-builder"); ?>
|
1220 |
+
<?php __("Message for logged-out users", "profile-builder"); ?>
|
1221 |
+
<?php __("Message for logged-in users", "profile-builder"); ?>
|
1222 |
+
<?php __("Restricted Posts Preview", "profile-builder"); ?>
|
1223 |
+
<?php __("Show the first %s words of the post's content", "profile-builder"); ?>
|
1224 |
+
<?php __("Show the content before the \"more\" tag", "profile-builder"); ?>
|
1225 |
+
<?php __("Show a portion of the restricted post to logged-out users or users that are not allowed to see it.", "profile-builder"); ?>
|
1226 |
+
<?php __("User Meta", "profile-builder"); ?>
|
1227 |
+
<?php __("show", "profile-builder"); ?>
|
1228 |
+
<?php __("delete this user from the _signups table?", "profile-builder"); ?>
|
1229 |
+
<?php __("confirm this email yourself?", "profile-builder"); ?>
|
1230 |
+
<?php __("Confirm Email", "profile-builder"); ?>
|
1231 |
+
<?php __("resend the activation link?", "profile-builder"); ?>
|
1232 |
+
<?php __("Resend Activation Email", "profile-builder"); ?>
|
1233 |
+
<?php __("%s couldn't be deleted", "profile-builder"); ?>
|
1234 |
+
<?php __("All users have been successfully deleted", "profile-builder"); ?>
|
1235 |
+
<?php __("The selected users have been activated", "profile-builder"); ?>
|
1236 |
+
<?php __("The selected users have had their activation emails resent", "profile-builder"); ?>
|
1237 |
+
<?php __("Users with Unconfirmed Email Address", "profile-builder"); ?>
|
1238 |
+
<?php __("There was an error performing that action!", "profile-builder"); ?>
|
1239 |
+
<?php __("The selected user couldn't be deleted", "profile-builder"); ?>
|
1240 |
+
<?php __("Email notification resent to user", "profile-builder"); ?>
|
1241 |
+
<?php __("[%1$s] Activate %2$s", "profile-builder"); ?>
|
1242 |
+
<?php __("To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login.", "profile-builder"); ?>
|
1243 |
+
<?php __("That username is already activated!", "profile-builder"); ?>
|
1244 |
+
<?php __("There was an error while trying to activate the user", "profile-builder"); ?>
|
1245 |
+
<?php __("A new subscriber has (been) registered!", "profile-builder"); ?>
|
1246 |
+
<?php __("New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>", "profile-builder"); ?>
|
1247 |
+
<?php __("[%1$s] Your new account information", "profile-builder"); ?>
|
1248 |
+
<?php __("Your selected password at signup", "profile-builder"); ?>
|
1249 |
+
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is:%2$s", "profile-builder"); ?>
|
1250 |
+
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s", "profile-builder"); ?>
|
1251 |
+
<?php __("The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!", "profile-builder"); ?>
|
1252 |
+
<?php __("This login widget lets you add a login form in the sidebar.", "profile-builder"); ?>
|
1253 |
+
<?php __("Profile Builder Login Widget", "profile-builder"); ?>
|
1254 |
+
<?php __("Title:", "profile-builder"); ?>
|
1255 |
+
<?php __("After login redirect URL (optional):", "profile-builder"); ?>
|
1256 |
+
<?php __("Register page URL (optional):", "profile-builder"); ?>
|
1257 |
+
<?php __("Password Recovery page URL (optional):", "profile-builder"); ?>
|
1258 |
+
<?php __("Capability", "profile-builder"); ?>
|
1259 |
+
<?php __("You can't delete this capability from your role.", "profile-builder"); ?>
|
1260 |
+
<?php __("Add New Role", "profile-builder"); ?>
|
1261 |
+
<?php __("Edit Role", "profile-builder"); ?>
|
1262 |
+
<?php __("New Role", "profile-builder"); ?>
|
1263 |
+
<?php __("View Role", "profile-builder"); ?>
|
1264 |
+
<?php __("Search the Roles Editor", "profile-builder"); ?>
|
1265 |
+
<?php __("No roles found", "profile-builder"); ?>
|
1266 |
+
<?php __("No roles found in trash", "profile-builder"); ?>
|
1267 |
+
<?php __("Role updated.", "profile-builder"); ?>
|
1268 |
+
<?php __("Custom field updated.", "profile-builder"); ?>
|
1269 |
+
<?php __("Custom field deleted.", "profile-builder"); ?>
|
1270 |
+
<?php __("Role created.", "profile-builder"); ?>
|
1271 |
+
<?php __("Role saved.", "profile-builder"); ?>
|
1272 |
+
<?php __("Role submitted.", "profile-builder"); ?>
|
1273 |
+
<?php __("Role scheduled for: <strong>%1$s</strong>", "profile-builder"); ?>
|
1274 |
+
<?php __("Role draft updated.", "profile-builder"); ?>
|
1275 |
+
<?php __("Role Name", "profile-builder"); ?>
|
1276 |
+
<?php __("Role Slug", "profile-builder"); ?>
|
1277 |
+
<?php __("Capabilities", "profile-builder"); ?>
|
1278 |
+
<?php __("Users", "profile-builder"); ?>
|
1279 |
+
<?php __("Clone", "profile-builder"); ?>
|
1280 |
+
<?php __("You can't delete your role.", "profile-builder"); ?>
|
1281 |
+
<?php __("Change Default", "profile-builder"); ?>
|
1282 |
+
<?php __("You can't delete the default role. Change it first.", "profile-builder"); ?>
|
1283 |
+
<?php __("Edit User Roles", "profile-builder"); ?>
|
1284 |
+
<?php __("The usernames cannot be changed.", "profile-builder"); ?>
|
1285 |
+
<?php __("After Login", "profile-builder"); ?>
|
1286 |
+
<?php __("After Logout", "profile-builder"); ?>
|
1287 |
+
<?php __("After Registration", "profile-builder"); ?>
|
1288 |
+
<?php __("After Edit Profile", "profile-builder"); ?>
|
1289 |
+
<?php __("After Successful Email Confirmation", "profile-builder"); ?>
|
1290 |
+
<?php __("After Successful Password Reset", "profile-builder"); ?>
|
1291 |
+
<?php __("Dashboard (redirect users from accessing the dashboard)", "profile-builder"); ?>
|
1292 |
+
<?php __("User ID", "profile-builder"); ?>
|
1293 |
+
<?php __("User ID or Username", "profile-builder"); ?>
|
1294 |
+
<?php __("User ID / Username", "profile-builder"); ?>
|
1295 |
+
<?php __("Please select and enter the ID or username of your user.", "profile-builder"); ?>
|
1296 |
+
<?php __("Redirect Type", "profile-builder"); ?>
|
1297 |
+
<?php __("Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}", "profile-builder"); ?>
|
1298 |
+
<?php __("Individual User Redirects", "profile-builder"); ?>
|
1299 |
+
<?php __("User Role", "profile-builder"); ?>
|
1300 |
+
<?php __("Select a user role.", "profile-builder"); ?>
|
1301 |
+
<?php __("User Role based Redirects", "profile-builder"); ?>
|
1302 |
+
<?php __("Global Redirects", "profile-builder"); ?>
|
1303 |
+
<?php __("Login ( wp_login.php )", "profile-builder"); ?>
|
1304 |
+
<?php __("Register ( wp-login.php?action=register )", "profile-builder"); ?>
|
1305 |
+
<?php __("Lost Password ( wp-login.php?action=lostpassword )", "profile-builder"); ?>
|
1306 |
+
<?php __("Author Archive ( http://sitename.com/author/admin )", "profile-builder"); ?>
|
1307 |
+
<?php __("Redirect Default WordPress Forms and Pages", "profile-builder"); ?>
|
1308 |
+
<?php __("How does this work?", "profile-builder"); ?>
|
1309 |
+
<?php __("<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>", "profile-builder"); ?>
|
1310 |
+
<?php __("<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>", "profile-builder"); ?>
|
1311 |
+
<?php __("<pre>Redirect</pre><pre>URL</pre>", "profile-builder"); ?>
|
1312 |
+
<?php __("These redirects happen after a successful action, like registration or after a successful login.", "profile-builder"); ?>
|
1313 |
+
<?php __("Which redirect happens depends on the following priority:", "profile-builder"); ?>
|
1314 |
+
<?php __("Multiple Registration and Edit Profile form settings Redirects", "profile-builder"); ?>
|
1315 |
+
<?php __("Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects.", "profile-builder"); ?>
|
1316 |
+
<?php __("Redirect Default WordPress forms and pages", "profile-builder"); ?>
|
1317 |
+
<?php __("With these you can redirect various WordPress forms and pages to pages created with profile builder.", "profile-builder"); ?>
|
1318 |
+
<?php __("Available tags for dynamic URLs", "profile-builder"); ?>
|
1319 |
+
<?php __("You use the following tags in your URLs to redirect users to various pages.", "profile-builder"); ?>
|
1320 |
+
<?php __("generates a url of the current website homepage.", "profile-builder"); ?>
|
1321 |
+
<?php __("in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url", "profile-builder"); ?>
|
1322 |
+
<?php __("the ID of the user", "profile-builder"); ?>
|
1323 |
+
<?php __("the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces.", "profile-builder"); ?>
|
1324 |
+
<?php __("the URL of the previously visited page", "profile-builder"); ?>
|
1325 |
+
<?php __("You can't add duplicate redirects!", "profile-builder"); ?>
|
1326 |
+
<?php __("These settings are also replicated in the \"User Email Customizer\" settings-page upon save.", "profile-builder"); ?>
|
1327 |
+
<?php __("Valid tags {{reply_to}} and {{site_name}}", "profile-builder"); ?>
|
1328 |
+
<?php __("From (name)", "profile-builder"); ?>
|
1329 |
+
<?php __("From (reply-to email)", "profile-builder"); ?>
|
1330 |
+
<?php __("Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email", "profile-builder"); ?>
|
1331 |
+
<?php __("Common Settings", "profile-builder"); ?>
|
1332 |
+
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n", "profile-builder"); ?>
|
1333 |
+
<?php __("Email Subject", "profile-builder"); ?>
|
1334 |
+
<?php __("Default Registration & Registration with Email Confirmation", "profile-builder"); ?>
|
1335 |
+
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n<p>The Admin Approval feature was activated at the time of registration,\nso please remember that you need to approve this user before he/she can log in!</p>", "profile-builder"); ?>
|
1336 |
+
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
1337 |
+
<?php __("<p>{{username}} has requested a password change via the password reset feature.</p>\n<p>His/her new password is: {{password}}</p>\n", "profile-builder"); ?>
|
1338 |
+
<?php __("Admin Notification for User Password Reset", "profile-builder"); ?>
|
1339 |
+
<?php __("Available Tags", "profile-builder"); ?>
|
1340 |
+
<?php __("User Fields Tags", "profile-builder"); ?>
|
1341 |
+
<?php __("Site Url", "profile-builder"); ?>
|
1342 |
+
<?php __("Site Name", "profile-builder"); ?>
|
1343 |
+
<?php __("User Id", "profile-builder"); ?>
|
1344 |
+
<?php __("User Role Label", "profile-builder"); ?>
|
1345 |
+
<?php __("Reply To", "profile-builder"); ?>
|
1346 |
+
<?php __("Blog URL", "profile-builder"); ?>
|
1347 |
+
<?php __("Activation Key", "profile-builder"); ?>
|
1348 |
+
<?php __("Activation Url", "profile-builder"); ?>
|
1349 |
+
<?php __("Activation Link", "profile-builder"); ?>
|
1350 |
+
<?php __("Reset Key", "profile-builder"); ?>
|
1351 |
+
<?php __("Reset Url", "profile-builder"); ?>
|
1352 |
+
<?php __("Reset Link", "profile-builder"); ?>
|
1353 |
+
<?php __("Approve User Url", "profile-builder"); ?>
|
1354 |
+
<?php __("Approve User Link", "profile-builder"); ?>
|
1355 |
+
<?php __("The users selected password at signup", "profile-builder"); ?>
|
1356 |
+
<?php __("These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save.", "profile-builder"); ?>
|
1357 |
+
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is:{{username}} and password:{{password}}</p>\n", "profile-builder"); ?>
|
1358 |
+
<?php __("<p>To activate your user, please click the following link:<br/>\n{{{activation_link}}}</p>\n<p>After you activate, you will receive another email with your credentials.</p>\n", "profile-builder"); ?>
|
1359 |
+
<?php __("[{{site_name}}] Activate {{username}}", "profile-builder"); ?>
|
1360 |
+
<?php __("Registration with Email Confirmation", "profile-builder"); ?>
|
1361 |
+
<?php __("<h3>Welcome to {{site_name}}!</h3>\n<p>Your username is:{{username}} and password:{{password}}</p>\n<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n", "profile-builder"); ?>
|
1362 |
+
<?php __("A new account has been created for you on {{site_name}}", "profile-builder"); ?>
|
1363 |
+
<?php __("<h3>Good News!</h3>\n<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n", "profile-builder"); ?>
|
1364 |
+
<?php __("Your account on {{site_name}} has been approved!", "profile-builder"); ?>
|
1365 |
+
<?php __("User Approval Notification", "profile-builder"); ?>
|
1366 |
+
<?php __("<h3>Hello,</h3>\n<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n", "profile-builder"); ?>
|
1367 |
+
<?php __("Your account on {{site_name}} has been unapproved!", "profile-builder"); ?>
|
1368 |
+
<?php __("Unapproved User Notification", "profile-builder"); ?>
|
1369 |
+
<?php __("<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\nUsername: {{username}}</p>\n<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n<p>To reset your password, visit the following address:<br/>\n{{{reset_link}}}</p>\n", "profile-builder"); ?>
|
1370 |
+
<?php __("[{{site_name}}] Password Reset", "profile-builder"); ?>
|
1371 |
+
<?php __("Password Reset Email", "profile-builder"); ?>
|
1372 |
+
<?php __("<p>You have successfully reset your password.</p>\n", "profile-builder"); ?>
|
1373 |
+
<?php __("[{{site_name}}] Password Reset Successfully", "profile-builder"); ?>
|
1374 |
+
<?php __("Password Reset Success Email", "profile-builder"); ?>
|
1375 |
+
<?php __("<h3>Hi {{username}},</h3>\n<p>This notice confirms that your email was changed on {{site_name}}.</p>\n<p>If you did not change your email, please contact the Site Administrator at %s</p>\n<p>This email has been sent to {{user_email}}</p>\n<p>Regards,<br>\nAll at {{site_name}}<br>\n<a href=\"{{site_url}}\">{{site_url}}</a></p>", "profile-builder"); ?>
|
1376 |
+
<?php __("[{{site_name}}] Notice of Email Change", "profile-builder"); ?>
|
1377 |
+
<?php __("Changed Email Address Notification", "profile-builder"); ?>
|
1378 |
+
<?php __("Edit-profile Form", "profile-builder"); ?>
|
1379 |
+
<?php __("Add New", "profile-builder"); ?>
|
1380 |
+
<?php __("Add new Edit-profile Form", "profile-builder"); ?>
|
1381 |
+
<?php __("Edit the Edit-profile Forms", "profile-builder"); ?>
|
1382 |
+
<?php __("New Edit-profile Form", "profile-builder"); ?>
|
1383 |
+
<?php __("Edit-profile Forms", "profile-builder"); ?>
|
1384 |
+
<?php __("View the Edit-profile Form", "profile-builder"); ?>
|
1385 |
+
<?php __("Search the Edit-profile Forms", "profile-builder"); ?>
|
1386 |
+
<?php __("No Edit-profile Form found", "profile-builder"); ?>
|
1387 |
+
<?php __("No Edit-profile Forms found in trash", "profile-builder"); ?>
|
1388 |
+
<?php __("Shortcode", "profile-builder"); ?>
|
1389 |
+
<?php __("(no title)", "profile-builder"); ?>
|
1390 |
+
<?php __("The shortcode will be available after you publish this form.", "profile-builder"); ?>
|
1391 |
+
<?php __("Use this shortcode on the page you want the form to be displayed:", "profile-builder"); ?>
|
1392 |
+
<?php __("<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!", "profile-builder"); ?>
|
1393 |
+
<?php __("Form Shortcode", "profile-builder"); ?>
|
1394 |
+
<?php __("Whether to redirect the user to a specific page or not", "profile-builder"); ?>
|
1395 |
+
<?php __("Display Messages", "profile-builder"); ?>
|
1396 |
+
<?php __("Allowed time to display any success messages (in seconds)", "profile-builder"); ?>
|
1397 |
+
<?php __("URL", "profile-builder"); ?>
|
1398 |
+
<?php __("Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com", "profile-builder"); ?>
|
1399 |
+
<?php __("After Profile Update...", "profile-builder"); ?>
|
1400 |
+
<?php __("Add New Field to the List", "profile-builder"); ?>
|
1401 |
+
<?php __("Choose one of the supported fields you manage <a href=\"%s\">here</a>", "profile-builder"); ?>
|
1402 |
+
<?php __("This form is empty.", "profile-builder"); ?>
|
1403 |
+
<?php __("You need to specify the title of the form before creating it", "profile-builder"); ?>
|
1404 |
+
<?php __("<pre>Title (Type)</pre>", "profile-builder"); ?>
|
1405 |
+
<?php __("Delete all items", "profile-builder"); ?>
|
1406 |
+
<?php __("Registration Form", "profile-builder"); ?>
|
1407 |
+
<?php __("Add new Registration Form", "profile-builder"); ?>
|
1408 |
+
<?php __("Edit the Registration Forms", "profile-builder"); ?>
|
1409 |
+
<?php __("New Registration Form", "profile-builder"); ?>
|
1410 |
+
<?php __("Registration Forms", "profile-builder"); ?>
|
1411 |
+
<?php __("View the Registration Form", "profile-builder"); ?>
|
1412 |
+
<?php __("Search the Registration Forms", "profile-builder"); ?>
|
1413 |
+
<?php __("No Registration Form found", "profile-builder"); ?>
|
1414 |
+
<?php __("No Registration Forms found in trash", "profile-builder"); ?>
|
1415 |
+
<?php __("Default Role", "profile-builder"); ?>
|
1416 |
+
<?php __("Set Role", "profile-builder"); ?>
|
1417 |
+
<?php __("Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings", "profile-builder"); ?>
|
1418 |
+
<?php __("Automatically Log In", "profile-builder"); ?>
|
1419 |
+
<?php __("Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work", "profile-builder"); ?>
|
1420 |
+
<?php __("Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com", "profile-builder"); ?>
|
1421 |
+
<?php __("After Registration...", "profile-builder"); ?>
|
1422 |
+
<?php __("Are you sure you want to delete this?", "profile-builder"); ?>
|
1423 |
+
<?php __("Add new User Listing", "profile-builder"); ?>
|
1424 |
+
<?php __("Edit the User Listing", "profile-builder"); ?>
|
1425 |
+
<?php __("New User Listing", "profile-builder"); ?>
|
1426 |
+
<?php __("View the User Listing", "profile-builder"); ?>
|
1427 |
+
<?php __("Search the User Listing", "profile-builder"); ?>
|
1428 |
+
<?php __("No User Listing found", "profile-builder"); ?>
|
1429 |
+
<?php __("No User Listing found in trash", "profile-builder"); ?>
|
1430 |
+
<?php __("Display name as", "profile-builder"); ?>
|
1431 |
+
<?php __("Registration Date", "profile-builder"); ?>
|
1432 |
+
<?php __("Number of Posts", "profile-builder"); ?>
|
1433 |
+
<?php __("More Info", "profile-builder"); ?>
|
1434 |
+
<?php __("More Info Url", "profile-builder"); ?>
|
1435 |
+
<?php __("Avatar or Gravatar", "profile-builder"); ?>
|
1436 |
+
<?php __("User Nicename", "profile-builder"); ?>
|
1437 |
+
<?php __("Sort Tags", "profile-builder"); ?>
|
1438 |
+
<?php __("Extra Functions", "profile-builder"); ?>
|
1439 |
+
<?php __("Pagination", "profile-builder"); ?>
|
1440 |
+
<?php __("Search all Fields", "profile-builder"); ?>
|
1441 |
+
<?php __("Faceted Menus", "profile-builder"); ?>
|
1442 |
+
<?php __("User Count", "profile-builder"); ?>
|
1443 |
+
<?php __("Go Back Link", "profile-builder"); ?>
|
1444 |
+
<?php __("All-userlisting Template", "profile-builder"); ?>
|
1445 |
+
<?php __("Single-userlisting Template", "profile-builder"); ?>
|
1446 |
+
<?php __("Avatar", "profile-builder"); ?>
|
1447 |
+
<?php __("Posts", "profile-builder"); ?>
|
1448 |
+
<?php __("Sign-up Date", "profile-builder"); ?>
|
1449 |
+
<?php __("More", "profile-builder"); ?>
|
1450 |
+
<?php __("You do not have permission to view this user list.", "profile-builder"); ?>
|
1451 |
+
<?php __("You do not have the required user role to view this user list.", "profile-builder"); ?>
|
1452 |
+
<?php __("User not found", "profile-builder"); ?>
|
1453 |
+
<?php __("First/Lastname", "profile-builder"); ?>
|
1454 |
+
<?php __("Display Name", "profile-builder"); ?>
|
1455 |
+
<?php __("Aim", "profile-builder"); ?>
|
1456 |
+
<?php __("Yim", "profile-builder"); ?>
|
1457 |
+
<?php __("Jabber", "profile-builder"); ?>
|
1458 |
+
<?php __("Search Users by All Fields", "profile-builder"); ?>
|
1459 |
+
<?php __("Click here to see more information about this user", "profile-builder"); ?>
|
1460 |
+
<?php __("More...", "profile-builder"); ?>
|
1461 |
+
<?php __("Click here to see more information about this user.", "profile-builder"); ?>
|
1462 |
+
<?php __("View Map", "profile-builder"); ?>
|
1463 |
+
<?php __("Click here to go back", "profile-builder"); ?>
|
1464 |
+
<?php __("Back", "profile-builder"); ?>
|
1465 |
+
<?php __("«« First", "profile-builder"); ?>
|
1466 |
+
<?php __("« Prev", "profile-builder"); ?>
|
1467 |
+
<?php __("Next » ", "profile-builder"); ?>
|
1468 |
+
<?php __("Last »»", "profile-builder"); ?>
|
1469 |
+
<?php __("You don't have any pagination settings on this userlisting!", "profile-builder"); ?>
|
1470 |
+
<?php __("Show All", "profile-builder"); ?>
|
1471 |
+
<?php __("Choose...", "profile-builder"); ?>
|
1472 |
+
<?php __("No options available", "profile-builder"); ?>
|
1473 |
+
<?php __("Remove All Filters", "profile-builder"); ?>
|
1474 |
+
<?php __("Search", "profile-builder"); ?>
|
1475 |
+
<?php __("Clear Results", "profile-builder"); ?>
|
1476 |
+
<?php __("Extra shortcode parameters", "profile-builder"); ?>
|
1477 |
+
<?php __("View all extra shortcode parameters", "profile-builder"); ?>
|
1478 |
+
<?php __("displays users having a certain meta-value within a certain (extra) meta-field", "profile-builder"); ?>
|
1479 |
+
<?php __("Example:", "profile-builder"); ?>
|
1480 |
+
<?php __("Remember though, that the field-value combination must exist in the database.", "profile-builder"); ?>
|
1481 |
+
<?php __("displays only the users that you specified the user_id for", "profile-builder"); ?>
|
1482 |
+
<?php __("displays all users except the ones you specified the user_id for", "profile-builder"); ?>
|
1483 |
+
<?php __("Random (very slow on large databases > 10K user)", "profile-builder"); ?>
|
1484 |
+
<?php __("Ascending", "profile-builder"); ?>
|
1485 |
+
<?php __("Descending", "profile-builder"); ?>
|
1486 |
+
<?php __("Roles to Display", "profile-builder"); ?>
|
1487 |
+
<?php __("Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles", "profile-builder"); ?>
|
1488 |
+
<?php __("Number of Users/Page", "profile-builder"); ?>
|
1489 |
+
<?php __("Set the number of users to be displayed on every paginated part of the all-userlisting", "profile-builder"); ?>
|
1490 |
+
<?php __("Default Sorting Criteria", "profile-builder"); ?>
|
1491 |
+
<?php __("Set the default sorting criteria<br/>This can temporarily be changed for each new session", "profile-builder"); ?>
|
1492 |
+
<?php __("Default Sorting Order", "profile-builder"); ?>
|
1493 |
+
<?php __("Set the default sorting order<br/>This can temporarily be changed for each new session", "profile-builder"); ?>
|
1494 |
+
<?php __("Avatar Size (All-userlisting)", "profile-builder"); ?>
|
1495 |
+
<?php __("Set the avatar size on the all-userlisting only", "profile-builder"); ?>
|
1496 |
+
<?php __("Avatar Size (Single-userlisting)", "profile-builder"); ?>
|
1497 |
+
<?php __("Set the avatar size on the single-userlisting only", "profile-builder"); ?>
|
1498 |
+
<?php __("Visible only to logged in users?", "profile-builder"); ?>
|
1499 |
+
<?php __("The userlisting will only be visible only to the logged in users", "profile-builder"); ?>
|
1500 |
+
<?php __("Visible to following Roles", "profile-builder"); ?>
|
1501 |
+
<?php __("The userlisting will only be visible to the following roles", "profile-builder"); ?>
|
1502 |
+
<?php __("Userlisting Settings", "profile-builder"); ?>
|
1503 |
+
<?php __("Label", "profile-builder"); ?>
|
1504 |
+
<?php __("Choose the facet name that appears on the frontend", "profile-builder"); ?>
|
1505 |
+
<?php __("Facet Type", "profile-builder"); ?>
|
1506 |
+
<?php __("Choose the facet menu type", "profile-builder"); ?>
|
1507 |
+
<?php __("Facet Meta", "profile-builder"); ?>
|
1508 |
+
<?php __("Choose the meta field for the facet menu", "profile-builder"); ?>
|
1509 |
+
<?php __("Behaviour", "profile-builder"); ?>
|
1510 |
+
<?php __("Narrow the results", "profile-builder"); ?>
|
1511 |
+
<?php __("Expand the results", "profile-builder"); ?>
|
1512 |
+
<?php __("Choose how multiple selections affect the results", "profile-builder"); ?>
|
1513 |
+
<?php __("Visible choices", "profile-builder"); ?>
|
1514 |
+
<?php __("Show a toggle link after this many choices. Leave blank for all", "profile-builder"); ?>
|
1515 |
+
<?php __("Search Fields", "profile-builder"); ?>
|
1516 |
+
<?php __("Choose the fields in which the Search Field will look in", "profile-builder"); ?>
|
1517 |
+
<?php __("Search Settings", "profile-builder"); ?>
|
1518 |
+
<?php __("You need to activate the Userlisting feature from within the \"Modules\" tab!", "profile-builder"); ?>
|
1519 |
+
<?php __("You can find it in the Profile Builder menu.", "profile-builder"); ?>
|
1520 |
+
<?php __("No results found!", "profile-builder"); ?>
|
1521 |
+
<?php __("Delete this item", "profile-builder"); ?>
|
1522 |
+
<?php __("Syncronize WCK", "profile-builder"); ?>
|
1523 |
+
<?php __("Syncronize WCK Translation", "profile-builder"); ?>
|
1524 |
+
<?php __("Yes, I'd like to create a new site", "profile-builder"); ?>
|
1525 |
+
<?php __("Your site url will look like this:<br>", "profile-builder"); ?>
|
1526 |
+
<?php __("Site URL slug", "profile-builder"); ?>
|
1527 |
+
<?php __("Site Title", "profile-builder"); ?>
|
1528 |
+
<?php __("Privacy: I would like my site to appear in search engines, and in public listings around this network.", "profile-builder"); ?>
|
1529 |
+
<?php __("You must enter a valid email address.", "profile-builder"); ?>
|
1530 |
+
<?php __("This email is already reserved to be used soon.", "profile-builder"); ?>
|
1531 |
+
<?php __("Please try a different one!", "profile-builder"); ?>
|
1532 |
+
<?php __("This email is already in use.", "profile-builder"); ?>
|
1533 |
+
<?php __("The passwords do not match", "profile-builder"); ?>
|
1534 |
+
<?php __("To use reCAPTCHA you must get an API key from", "profile-builder"); ?>
|
1535 |
+
<?php __("For security reasons, you must pass the remote ip to reCAPTCHA!", "profile-builder"); ?>
|
1536 |
+
<?php __("To use reCAPTCHA you must get an API public key from:", "profile-builder"); ?>
|
1537 |
+
<?php __("Click the BACK button on your browser, and try again.", "profile-builder"); ?>
|
1538 |
+
<?php __("Only administrators can see this field on edit profile forms.", "profile-builder"); ?>
|
1539 |
+
<?php __("As an administrator you cannot change your role.", "profile-builder"); ?>
|
1540 |
+
<?php __("You cannot register this user role", "profile-builder"); ?>
|
1541 |
+
<?php __("This username already exists.", "profile-builder"); ?>
|
1542 |
+
<?php __("This username is invalid because it uses illegal characters.", "profile-builder"); ?>
|
1543 |
+
<?php __("Please enter a valid username.", "profile-builder"); ?>
|
1544 |
+
<?php __("This username is already reserved to be used soon.", "profile-builder"); ?>
|
1545 |
+
<?php __("Please add the Google Maps API key for this field.", "profile-builder"); ?>
|
1546 |
+
<?php __("Something went wrong. Please try again.", "profile-builder"); ?>
|
1547 |
+
<?php __("Please enter numbers only", "profile-builder"); ?>
|
1548 |
+
<?php __("Value must be a multiplier of %1$s", "profile-builder"); ?>
|
1549 |
+
<?php __("Value must be greater than or equal to %1$s", "profile-builder"); ?>
|
1550 |
+
<?php __("Value must be less than or equal to %1$s", "profile-builder"); ?>
|
1551 |
+
<?php __("Required phone number format: ", "profile-builder"); ?>
|
1552 |
+
<?php __("Bolivia, __( Plurinational State of", "profile-builder"); ?>
|
1553 |
+
<?php __("Bonaire, __( Sint Eustatius and Saba", "profile-builder"); ?>
|
1554 |
+
<?php __("Brunei Darussalam", "profile-builder"); ?>
|
1555 |
+
<?php __("Cabo Verde", "profile-builder"); ?>
|
1556 |
+
<?php __("Cocos (Keeling) Islands", "profile-builder"); ?>
|
1557 |
+
<?php __("Congo", "profile-builder"); ?>
|
1558 |
+
<?php __("Congo, __( the Democratic Republic of the", "profile-builder"); ?>
|
1559 |
+
<?php __("Cote dIvoire", "profile-builder"); ?>
|
1560 |
+
<?php __("Falkland Islands (Malvinas)", "profile-builder"); ?>
|
1561 |
+
<?php __("Holy See (Vatican City State)", "profile-builder"); ?>
|
1562 |
+
<?php __("Iran, __( Islamic Republic of", "profile-builder"); ?>
|
1563 |
+
<?php __("Korea, __( Democratic Peoples Republic of", "profile-builder"); ?>
|
1564 |
+
<?php __("Korea, __( Republic of", "profile-builder"); ?>
|
1565 |
+
<?php __("Lao Peoples Democratic Republic", "profile-builder"); ?>
|
1566 |
+
<?php __("Macedonia, __( the former Yugoslav Republic of", "profile-builder"); ?>
|
1567 |
+
<?php __("Micronesia, __( Federated States of", "profile-builder"); ?>
|
1568 |
+
<?php __("Moldova, __( Republic of", "profile-builder"); ?>
|
1569 |
+
<?php __("Palestine, __( State of", "profile-builder"); ?>
|
1570 |
+
<?php __("Russian Federation", "profile-builder"); ?>
|
1571 |
+
<?php __("Saint Helena, __( Ascension and Tristan da Cunha", "profile-builder"); ?>
|
1572 |
+
<?php __("Saint Martin (French part)", "profile-builder"); ?>
|
1573 |
+
<?php __("Sint Maarten (Dutch part)", "profile-builder"); ?>
|
1574 |
+
<?php __("Syrian Arab Republic", "profile-builder"); ?>
|
1575 |
+
<?php __("Taiwan, __( Province of China", "profile-builder"); ?>
|
1576 |
+
<?php __("Tanzania, __( United Republic of", "profile-builder"); ?>
|
1577 |
+
<?php __("Timor-Leste", "profile-builder"); ?>
|
1578 |
+
<?php __("Venezuela, __( Bolivarian Republic of", "profile-builder"); ?>
|
1579 |
+
<?php __("Viet Nam", "profile-builder"); ?>
|
1580 |
+
<?php __("Virgin Islands, __( British", "profile-builder"); ?>
|
1581 |
+
<?php __("Virgin Islands, __( U.S.", "profile-builder"); ?>
|
1582 |
+
<?php __("...Choose", "profile-builder"); ?>
|
1583 |
+
<?php __("Remove", "profile-builder"); ?>
|
1584 |
+
<?php __("Select File", "profile-builder"); ?>
|
1585 |
+
<?php __("Upload ", "profile-builder"); ?>
|
1586 |
+
<?php __("Sorry, you cannot upload this file type for this field.", "profile-builder"); ?>
|
1587 |
+
<?php __("An error occurred, please try again later.", "profile-builder"); ?>
|
1588 |
+
<?php __("Limit", "profile-builder"); ?>
|
1589 |
+
<?php __("Enable limit to the number of fields to be generated by users in front end forms ", "profile-builder"); ?>
|
1590 |
+
<?php __("General Limit", "profile-builder"); ?>
|
1591 |
+
<?php __("Default limit for this repeater group. <br>Leave 0 for unlimited.", "profile-builder"); ?>
|
1592 |
+
<?php __("Limit reached message", "profile-builder"); ?>
|
1593 |
+
<?php __("The maximum number of fields has been reached.", "profile-builder"); ?>
|
1594 |
+
<?php __("The popup message to display when the limit of repeater groups is reached.", "profile-builder"); ?>
|
1595 |
+
<?php __("Limit per Role", "profile-builder"); ?>
|
1596 |
+
<?php __("Leave 0 for unlimited.", "profile-builder"); ?>
|
1597 |
+
<?php __("Repeated field group", "profile-builder"); ?>
|
1598 |
+
<?php __("Manage field or group of fields that will be repeatable.", "profile-builder"); ?>
|
1599 |
+
<?php __("Edit field group", "profile-builder"); ?>
|
1600 |
+
<?php __("Repeatable fields saved!", "profile-builder"); ?>
|
1601 |
+
<?php __("Please enter a unique field title.", "profile-builder"); ?>
|
1602 |
+
<?php __("Please enter a unique field title.\n", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -1,5993 +1,6508 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the Profile Builder
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: Profile Builder
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
#:
|
41 |
-
msgid "
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#:
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
#:
|
57 |
-
msgid "
|
58 |
-
msgstr ""
|
59 |
-
|
60 |
-
#:
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
"
|
74 |
-
"
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
"
|
118 |
-
"
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
"
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#:
|
165 |
-
msgid "
|
166 |
-
msgstr ""
|
167 |
-
|
168 |
-
#:
|
169 |
-
msgid "
|
170 |
-
msgstr ""
|
171 |
-
|
172 |
-
#:
|
173 |
-
msgid ""
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
#:
|
201 |
-
msgid "
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#:
|
205 |
-
msgid ""
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
"
|
226 |
-
"
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
#:
|
245 |
-
msgid "
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#:
|
249 |
-
msgid "
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#:
|
253 |
-
msgid "
|
254 |
-
msgstr ""
|
255 |
-
|
256 |
-
#:
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
"
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
msgstr ""
|
319 |
-
|
320 |
-
#:
|
321 |
-
msgid "
|
322 |
-
msgstr ""
|
323 |
-
|
324 |
-
#:
|
325 |
-
msgid "
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#:
|
329 |
-
msgid "
|
330 |
-
msgstr ""
|
331 |
-
|
332 |
-
#:
|
333 |
-
msgid "
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#:
|
337 |
-
msgid ""
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
"
|
350 |
-
msgstr ""
|
351 |
-
|
352 |
-
#:
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
"
|
362 |
-
msgstr ""
|
363 |
-
|
364 |
-
#:
|
365 |
-
msgid "
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: admin/basic-info.php:
|
369 |
-
msgid ""
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
"
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
#:
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#:
|
517 |
-
msgid "
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#:
|
521 |
-
msgid ""
|
522 |
-
"
|
523 |
-
"
|
524 |
-
msgstr ""
|
525 |
-
|
526 |
-
#:
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
"
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
"
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
"
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
#:
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
#:
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
"
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
"
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
msgstr ""
|
643 |
-
|
644 |
-
#:
|
645 |
-
msgid "
|
646 |
-
msgstr ""
|
647 |
-
|
648 |
-
#:
|
649 |
-
msgid "
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#:
|
653 |
-
msgid "
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: admin/general-settings.php:
|
657 |
-
msgid "
|
658 |
-
msgstr ""
|
659 |
-
|
660 |
-
#: admin/general-settings.php:
|
661 |
-
msgid "
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
#:
|
665 |
-
msgid ""
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
"
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
#:
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
#:
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
#:
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
"
|
754 |
-
"
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
"
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
#:
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
#:
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
"
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
"
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#:
|
813 |
-
msgid "
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#:
|
817 |
-
msgid ""
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
"
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#:
|
833 |
-
msgid "
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#:
|
837 |
-
msgid ""
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
"
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
"
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
"
|
874 |
-
msgstr ""
|
875 |
-
|
876 |
-
#:
|
877 |
-
msgid "
|
878 |
-
msgstr ""
|
879 |
-
|
880 |
-
#:
|
881 |
-
msgid ""
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
"
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
"
|
962 |
-
msgstr ""
|
963 |
-
|
964 |
-
#:
|
965 |
-
msgid "
|
966 |
-
msgstr ""
|
967 |
-
|
968 |
-
#:
|
969 |
-
msgid "
|
970 |
-
msgstr ""
|
971 |
-
|
972 |
-
#:
|
973 |
-
msgid "
|
974 |
-
msgstr ""
|
975 |
-
|
976 |
-
#:
|
977 |
-
msgid "
|
978 |
-
msgstr ""
|
979 |
-
|
980 |
-
#:
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
#:
|
1001 |
-
msgid "
|
1002 |
-
msgstr ""
|
1003 |
-
|
1004 |
-
#:
|
1005 |
-
msgid "
|
1006 |
-
msgstr ""
|
1007 |
-
|
1008 |
-
#:
|
1009 |
-
msgid ""
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
"
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
"
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
"
|
1118 |
-
"
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
"
|
1202 |
-
msgstr ""
|
1203 |
-
|
1204 |
-
#: admin/
|
1205 |
-
msgid "
|
1206 |
-
msgstr ""
|
1207 |
-
|
1208 |
-
#: admin/manage-fields.php:
|
1209 |
-
msgid "
|
1210 |
-
msgstr ""
|
1211 |
-
|
1212 |
-
#: admin/manage-fields.php:
|
1213 |
-
msgid "
|
1214 |
-
msgstr ""
|
1215 |
-
|
1216 |
-
#: admin/manage-fields.php:
|
1217 |
-
msgid "
|
1218 |
-
msgstr ""
|
1219 |
-
|
1220 |
-
#: admin/manage-fields.php:
|
1221 |
-
msgid "
|
1222 |
-
msgstr ""
|
1223 |
-
|
1224 |
-
#: admin/manage-fields.php:
|
1225 |
-
msgid "
|
1226 |
-
msgstr ""
|
1227 |
-
|
1228 |
-
#: admin/manage-fields.php:
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
#:
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
"
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
#:
|
1311 |
-
msgid "
|
1312 |
-
msgstr ""
|
1313 |
-
|
1314 |
-
#:
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
#:
|
1331 |
-
msgid "
|
1332 |
-
msgstr ""
|
1333 |
-
|
1334 |
-
#: admin/manage-fields.php:
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
#:
|
1351 |
-
msgid "
|
1352 |
-
msgstr ""
|
1353 |
-
|
1354 |
-
#: admin/
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
#:
|
1371 |
-
msgid "
|
1372 |
-
msgstr ""
|
1373 |
-
|
1374 |
-
#: admin/
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
#:
|
1391 |
-
msgid "
|
1392 |
-
msgstr ""
|
1393 |
-
|
1394 |
-
#: admin/
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
#:
|
1411 |
-
msgid "
|
1412 |
-
msgstr ""
|
1413 |
-
|
1414 |
-
#: admin/manage-fields.php:
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
#:
|
1449 |
-
msgid "
|
1450 |
-
msgstr ""
|
1451 |
-
|
1452 |
-
#: admin/
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
#:
|
1477 |
-
msgid "
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
#:
|
1487 |
-
msgid "
|
1488 |
-
msgstr ""
|
1489 |
-
|
1490 |
-
#: admin/manage-fields.php:
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
#:
|
1511 |
-
msgid "
|
1512 |
-
msgstr ""
|
1513 |
-
|
1514 |
-
#:
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
#:
|
1531 |
-
msgid "
|
1532 |
-
msgstr ""
|
1533 |
-
|
1534 |
-
#:
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
#:
|
1555 |
-
msgid "
|
1556 |
-
msgstr ""
|
1557 |
-
|
1558 |
-
#: admin/
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
#:
|
1575 |
-
msgid "
|
1576 |
-
msgstr ""
|
1577 |
-
|
1578 |
-
#: admin/
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
#:
|
1599 |
-
msgid "
|
1600 |
-
msgstr ""
|
1601 |
-
|
1602 |
-
#: admin/
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
#:
|
1623 |
-
msgid "
|
1624 |
-
msgstr ""
|
1625 |
-
|
1626 |
-
#: admin/
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
#:
|
1643 |
-
msgid "
|
1644 |
-
msgstr ""
|
1645 |
-
|
1646 |
-
#: admin/
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
#:
|
1667 |
-
msgid "
|
1668 |
-
msgstr ""
|
1669 |
-
|
1670 |
-
#: admin/
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
#:
|
1687 |
-
msgid "
|
1688 |
-
msgstr ""
|
1689 |
-
|
1690 |
-
#: admin/
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
#:
|
1707 |
-
msgid "
|
1708 |
-
msgstr ""
|
1709 |
-
|
1710 |
-
#: admin/
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
#:
|
1727 |
-
msgid "
|
1728 |
-
msgstr ""
|
1729 |
-
|
1730 |
-
#: admin/
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
#:
|
1747 |
-
msgid "
|
1748 |
-
msgstr ""
|
1749 |
-
|
1750 |
-
#: admin/
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
#:
|
1767 |
-
msgid "
|
1768 |
-
msgstr ""
|
1769 |
-
|
1770 |
-
#: admin/
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
#:
|
1787 |
-
msgid "
|
1788 |
-
msgstr ""
|
1789 |
-
|
1790 |
-
#: admin/
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
#:
|
1807 |
-
msgid "
|
1808 |
-
msgstr ""
|
1809 |
-
|
1810 |
-
#: admin/
|
1811 |
-
msgid "
|
1812 |
-
msgstr ""
|
1813 |
-
|
1814 |
-
#: admin/
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
#:
|
1831 |
-
msgid "
|
1832 |
-
msgstr ""
|
1833 |
-
|
1834 |
-
#: admin/
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
#:
|
1855 |
-
msgid "
|
1856 |
-
msgstr ""
|
1857 |
-
|
1858 |
-
#: admin/
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
#:
|
1875 |
-
msgid "
|
1876 |
-
msgstr ""
|
1877 |
-
|
1878 |
-
#: admin/
|
1879 |
-
msgid "
|
1880 |
-
msgstr ""
|
1881 |
-
|
1882 |
-
#: admin/
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
#:
|
1903 |
-
msgid "
|
1904 |
-
msgstr ""
|
1905 |
-
|
1906 |
-
#: admin/
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
#:
|
1923 |
-
msgid "
|
1924 |
-
msgstr ""
|
1925 |
-
|
1926 |
-
#: admin/
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
|
1944 |
-
|
1945 |
-
|
1946 |
-
#:
|
1947 |
-
msgid "
|
1948 |
-
msgstr ""
|
1949 |
-
|
1950 |
-
#: admin/
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
#:
|
1967 |
-
msgid "
|
1968 |
-
msgstr ""
|
1969 |
-
|
1970 |
-
#: admin/
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
#:
|
1987 |
-
msgid "
|
1988 |
-
msgstr ""
|
1989 |
-
|
1990 |
-
#: admin/
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
#:
|
2015 |
-
msgid "
|
2016 |
-
msgstr ""
|
2017 |
-
|
2018 |
-
#: admin/
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
#:
|
2035 |
-
msgid "
|
2036 |
-
msgstr ""
|
2037 |
-
|
2038 |
-
#: admin/
|
2039 |
-
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
#:
|
2055 |
-
msgid "
|
2056 |
-
msgstr ""
|
2057 |
-
|
2058 |
-
#: admin/
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
#:
|
2075 |
-
msgid "
|
2076 |
-
msgstr ""
|
2077 |
-
|
2078 |
-
#: admin/
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
#:
|
2095 |
-
msgid "
|
2096 |
-
msgstr ""
|
2097 |
-
|
2098 |
-
#: admin/
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
#:
|
2119 |
-
msgid "
|
2120 |
-
msgstr ""
|
2121 |
-
|
2122 |
-
#: admin/
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
#:
|
2143 |
-
msgid "
|
2144 |
-
msgstr ""
|
2145 |
-
|
2146 |
-
#: admin/manage-fields.php:
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
#:
|
2163 |
-
msgid "
|
2164 |
-
msgstr ""
|
2165 |
-
|
2166 |
-
#: admin/manage-fields.php:
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
#:
|
2183 |
-
msgid "
|
2184 |
-
msgstr ""
|
2185 |
-
|
2186 |
-
#: admin/manage-fields.php:
|
2187 |
-
msgid "
|
2188 |
-
msgstr ""
|
2189 |
-
|
2190 |
-
#: admin/manage-fields.php:
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
#:
|
2211 |
-
msgid "
|
2212 |
-
msgstr ""
|
2213 |
-
|
2214 |
-
#: admin/manage-fields.php:
|
2215 |
-
msgid "
|
2216 |
-
msgstr ""
|
2217 |
-
|
2218 |
-
#: admin/manage-fields.php:
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
#:
|
2239 |
-
msgid "
|
2240 |
-
msgstr ""
|
2241 |
-
|
2242 |
-
#: admin/manage-fields.php:
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
#:
|
2259 |
-
msgid "
|
2260 |
-
msgstr ""
|
2261 |
-
|
2262 |
-
#: admin/manage-fields.php:
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
#:
|
2279 |
-
msgid "
|
2280 |
-
msgstr ""
|
2281 |
-
|
2282 |
-
#: admin/manage-fields.php:
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
#:
|
2303 |
-
msgid "
|
2304 |
-
msgstr ""
|
2305 |
-
|
2306 |
-
#: admin/manage-fields.php:
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
#:
|
2327 |
-
msgid "
|
2328 |
-
msgstr ""
|
2329 |
-
|
2330 |
-
#: admin/manage-fields.php:
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
#:
|
2347 |
-
msgid "
|
2348 |
-
msgstr ""
|
2349 |
-
|
2350 |
-
#: admin/manage-fields.php:
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
#:
|
2367 |
-
msgid "
|
2368 |
-
msgstr ""
|
2369 |
-
|
2370 |
-
#: admin/manage-fields.php:
|
2371 |
-
msgid "
|
2372 |
-
msgstr ""
|
2373 |
-
|
2374 |
-
#: admin/manage-fields.php:
|
2375 |
-
msgid "
|
2376 |
-
msgstr ""
|
2377 |
-
|
2378 |
-
#: admin/manage-fields.php:
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
#:
|
2399 |
-
msgid "
|
2400 |
-
msgstr ""
|
2401 |
-
|
2402 |
-
#: admin/manage-fields.php:
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
#:
|
2419 |
-
msgid "
|
2420 |
-
msgstr ""
|
2421 |
-
|
2422 |
-
#: admin/manage-fields.php:
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
#:
|
2443 |
-
msgid "
|
2444 |
-
msgstr ""
|
2445 |
-
|
2446 |
-
#: admin/manage-fields.php:
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
#:
|
2463 |
-
msgid "
|
2464 |
-
msgstr ""
|
2465 |
-
|
2466 |
-
#: admin/manage-fields.php:
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
#:
|
2483 |
-
msgid "
|
2484 |
-
msgstr ""
|
2485 |
-
|
2486 |
-
#: admin/manage-fields.php:
|
2487 |
-
msgid "
|
2488 |
-
msgstr ""
|
2489 |
-
|
2490 |
-
#: admin/manage-fields.php:
|
2491 |
-
msgid "
|
2492 |
-
msgstr ""
|
2493 |
-
|
2494 |
-
#: admin/manage-fields.php:
|
2495 |
-
msgid "
|
2496 |
-
msgstr ""
|
2497 |
-
|
2498 |
-
#: admin/manage-fields.php:
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
|
2514 |
-
#:
|
2515 |
-
msgid "
|
2516 |
-
msgstr ""
|
2517 |
-
|
2518 |
-
#: admin/manage-fields.php:
|
2519 |
-
|
2520 |
-
|
2521 |
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
|
2591 |
-
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
|
2622 |
-
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
2635 |
-
|
2636 |
-
|
2637 |
-
|
2638 |
-
|
2639 |
-
|
2640 |
-
|
2641 |
-
|
2642 |
-
|
2643 |
-
|
2644 |
-
|
2645 |
-
|
2646 |
-
|
2647 |
-
|
2648 |
-
|
2649 |
-
|
2650 |
-
|
2651 |
-
|
2652 |
-
|
2653 |
-
|
2654 |
-
|
2655 |
-
|
2656 |
-
|
2657 |
-
|
2658 |
-
|
2659 |
-
|
2660 |
-
|
2661 |
-
|
2662 |
-
|
2663 |
-
|
2664 |
-
|
2665 |
-
|
2666 |
-
|
2667 |
-
|
2668 |
-
|
2669 |
-
|
2670 |
-
|
2671 |
-
|
2672 |
-
|
2673 |
-
|
2674 |
-
|
2675 |
-
|
2676 |
-
|
2677 |
-
|
2678 |
-
|
2679 |
-
|
2680 |
-
|
2681 |
-
|
2682 |
-
|
2683 |
-
|
2684 |
-
|
2685 |
-
|
2686 |
-
|
2687 |
-
|
2688 |
-
|
2689 |
-
|
2690 |
-
|
2691 |
-
|
2692 |
-
|
2693 |
-
|
2694 |
-
|
2695 |
-
|
2696 |
-
|
2697 |
-
|
2698 |
-
|
2699 |
-
|
2700 |
-
|
2701 |
-
|
2702 |
-
|
2703 |
-
|
2704 |
-
|
2705 |
-
|
2706 |
-
|
2707 |
-
|
2708 |
-
|
2709 |
-
|
2710 |
-
|
2711 |
-
|
2712 |
-
|
2713 |
-
|
2714 |
-
|
2715 |
-
|
2716 |
-
|
2717 |
-
|
2718 |
-
|
2719 |
-
|
2720 |
-
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
2724 |
-
|
2725 |
-
|
2726 |
-
|
2727 |
-
|
2728 |
-
|
2729 |
-
|
2730 |
-
|
2731 |
-
|
2732 |
-
|
2733 |
-
|
2734 |
-
|
2735 |
-
|
2736 |
-
|
2737 |
-
|
2738 |
-
|
2739 |
-
|
2740 |
-
|
2741 |
-
|
2742 |
-
|
2743 |
-
|
2744 |
-
|
2745 |
-
|
2746 |
-
|
2747 |
-
|
2748 |
-
|
2749 |
-
|
2750 |
-
|
2751 |
-
|
2752 |
-
|
2753 |
-
|
2754 |
-
|
2755 |
-
|
2756 |
-
|
2757 |
-
|
2758 |
-
|
2759 |
-
|
2760 |
-
|
2761 |
-
|
2762 |
-
|
2763 |
-
|
2764 |
-
|
2765 |
-
|
2766 |
-
|
2767 |
-
|
2768 |
-
|
2769 |
-
|
2770 |
-
|
2771 |
-
|
2772 |
-
|
2773 |
-
|
2774 |
-
|
2775 |
-
|
2776 |
-
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
-
|
2783 |
-
|
2784 |
-
|
2785 |
-
|
2786 |
-
|
2787 |
-
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
|
2805 |
-
|
2806 |
-
|
2807 |
-
|
2808 |
-
|
2809 |
-
|
2810 |
-
|
2811 |
-
|
2812 |
-
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
|
2818 |
-
|
2819 |
-
|
2820 |
-
|
2821 |
-
|
2822 |
-
|
2823 |
-
|
2824 |
-
|
2825 |
-
|
2826 |
-
|
2827 |
-
|
2828 |
-
|
2829 |
-
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
2834 |
-
|
2835 |
-
|
2836 |
-
|
2837 |
-
|
2838 |
-
|
2839 |
-
|
2840 |
-
|
2841 |
-
|
2842 |
-
|
2843 |
-
|
2844 |
-
|
2845 |
-
|
2846 |
-
|
2847 |
-
|
2848 |
-
|
2849 |
-
|
2850 |
-
|
2851 |
-
|
2852 |
-
|
2853 |
-
|
2854 |
-
|
2855 |
-
|
2856 |
-
|
2857 |
-
|
2858 |
-
|
2859 |
-
|
2860 |
-
|
2861 |
-
|
2862 |
-
|
2863 |
-
|
2864 |
-
|
2865 |
-
|
2866 |
-
|
2867 |
-
|
2868 |
-
|
2869 |
-
|
2870 |
-
|
2871 |
-
|
2872 |
-
|
2873 |
-
|
2874 |
-
|
2875 |
-
|
2876 |
-
|
2877 |
-
|
2878 |
-
|
2879 |
-
|
2880 |
-
|
2881 |
-
|
2882 |
-
|
2883 |
-
|
2884 |
-
|
2885 |
-
|
2886 |
-
|
2887 |
-
|
2888 |
-
|
2889 |
-
|
2890 |
-
|
2891 |
-
|
2892 |
-
|
2893 |
-
|
2894 |
-
|
2895 |
-
|
2896 |
-
|
2897 |
-
|
2898 |
-
|
2899 |
-
|
2900 |
-
|
2901 |
-
|
2902 |
-
|
2903 |
-
|
2904 |
-
|
2905 |
-
|
2906 |
-
|
2907 |
-
|
2908 |
-
|
2909 |
-
|
2910 |
-
|
2911 |
-
|
2912 |
-
|
2913 |
-
|
2914 |
-
|
2915 |
-
|
2916 |
-
|
2917 |
-
|
2918 |
-
|
2919 |
-
|
2920 |
-
|
2921 |
-
|
2922 |
-
|
2923 |
-
|
2924 |
-
|
2925 |
-
|
2926 |
-
|
2927 |
-
|
2928 |
-
|
2929 |
-
|
2930 |
-
|
2931 |
-
|
2932 |
-
|
2933 |
-
|
2934 |
-
|
2935 |
-
|
2936 |
-
|
2937 |
-
|
2938 |
-
|
2939 |
-
|
2940 |
-
|
2941 |
-
|
2942 |
-
|
2943 |
-
|
2944 |
-
|
2945 |
-
|
2946 |
-
|
2947 |
-
|
2948 |
-
|
2949 |
-
|
2950 |
-
|
2951 |
-
|
2952 |
-
|
2953 |
-
|
2954 |
-
|
2955 |
-
|
2956 |
-
|
2957 |
-
|
2958 |
-
|
2959 |
-
|
2960 |
-
|
2961 |
-
|
2962 |
-
|
2963 |
-
|
2964 |
-
|
2965 |
-
|
2966 |
-
|
2967 |
-
|
2968 |
-
|
2969 |
-
|
2970 |
-
|
2971 |
-
|
2972 |
-
|
2973 |
-
|
2974 |
-
|
2975 |
-
|
2976 |
-
|
2977 |
-
|
2978 |
-
|
2979 |
-
|
2980 |
-
|
2981 |
-
|
2982 |
-
|
2983 |
-
|
2984 |
-
|
2985 |
-
|
2986 |
-
|
2987 |
-
|
2988 |
-
|
2989 |
-
|
2990 |
-
|
2991 |
-
|
2992 |
-
|
2993 |
-
|
2994 |
-
|
2995 |
-
|
2996 |
-
|
2997 |
-
|
2998 |
-
|
2999 |
-
|
3000 |
-
|
3001 |
-
|
3002 |
-
|
3003 |
-
|
3004 |
-
|
3005 |
-
|
3006 |
-
|
3007 |
-
|
3008 |
-
|
3009 |
-
|
3010 |
-
|
3011 |
-
|
3012 |
-
|
3013 |
-
|
3014 |
-
|
3015 |
-
|
3016 |
-
|
3017 |
-
|
3018 |
-
|
3019 |
-
|
3020 |
-
|
3021 |
-
|
3022 |
-
|
3023 |
-
|
3024 |
-
|
3025 |
-
|
3026 |
-
#: admin/manage-fields.php:
|
3027 |
-
msgid "
|
3028 |
-
msgstr ""
|
3029 |
-
|
3030 |
-
#: admin/manage-fields.php:
|
3031 |
-
msgid ""
|
3032 |
-
|
3033 |
-
|
3034 |
-
|
3035 |
-
|
3036 |
-
|
3037 |
-
|
3038 |
-
|
3039 |
-
"
|
3040 |
-
msgstr ""
|
3041 |
-
|
3042 |
-
#: admin/manage-fields.php:
|
3043 |
-
msgid ""
|
3044 |
-
|
3045 |
-
|
3046 |
-
|
3047 |
-
|
3048 |
-
|
3049 |
-
|
3050 |
-
|
3051 |
-
|
3052 |
-
|
3053 |
-
|
3054 |
-
|
3055 |
-
|
3056 |
-
|
3057 |
-
|
3058 |
-
|
3059 |
-
|
3060 |
-
|
3061 |
-
|
3062 |
-
#:
|
3063 |
-
|
3064 |
-
|
3065 |
-
|
3066 |
-
#:
|
3067 |
-
|
3068 |
-
|
3069 |
-
|
3070 |
-
#:
|
3071 |
-
|
3072 |
-
|
3073 |
-
|
3074 |
-
|
3075 |
-
|
3076 |
-
|
3077 |
-
|
3078 |
-
#:
|
3079 |
-
|
3080 |
-
|
3081 |
-
|
3082 |
-
#:
|
3083 |
-
|
3084 |
-
|
3085 |
-
|
3086 |
-
#:
|
3087 |
-
|
3088 |
-
|
3089 |
-
|
3090 |
-
#:
|
3091 |
-
msgid "
|
3092 |
-
msgstr ""
|
3093 |
-
|
3094 |
-
#: admin/manage-fields.php:
|
3095 |
-
msgid "
|
3096 |
-
msgstr ""
|
3097 |
-
|
3098 |
-
#: admin/manage-fields.php:
|
3099 |
-
msgid ""
|
3100 |
-
|
3101 |
-
|
3102 |
-
|
3103 |
-
|
3104 |
-
|
3105 |
-
|
3106 |
-
|
3107 |
-
|
3108 |
-
|
3109 |
-
|
3110 |
-
|
3111 |
-
|
3112 |
-
|
3113 |
-
|
3114 |
-
|
3115 |
-
|
3116 |
-
|
3117 |
-
|
3118 |
-
|
3119 |
-
|
3120 |
-
|
3121 |
-
|
3122 |
-
|
3123 |
-
|
3124 |
-
|
3125 |
-
|
3126 |
-
|
3127 |
-
|
3128 |
-
msgstr ""
|
3129 |
-
|
3130 |
-
#: admin/
|
3131 |
-
msgid "
|
3132 |
-
msgstr ""
|
3133 |
-
|
3134 |
-
#: admin/
|
3135 |
-
msgid "
|
3136 |
-
msgstr ""
|
3137 |
-
|
3138 |
-
#: admin/
|
3139 |
-
msgid "
|
3140 |
-
msgstr ""
|
3141 |
-
|
3142 |
-
#: admin/
|
3143 |
-
msgid "
|
3144 |
-
msgstr ""
|
3145 |
-
|
3146 |
-
#: admin/
|
3147 |
-
msgid "
|
3148 |
-
msgstr ""
|
3149 |
-
|
3150 |
-
#: admin/
|
3151 |
-
msgid "
|
3152 |
-
msgstr ""
|
3153 |
-
|
3154 |
-
#: admin/
|
3155 |
-
msgid "
|
3156 |
-
msgstr ""
|
3157 |
-
|
3158 |
-
#: admin/
|
3159 |
-
msgid "
|
3160 |
-
msgstr ""
|
3161 |
-
|
3162 |
-
#: admin/
|
3163 |
-
msgid "
|
3164 |
-
msgstr ""
|
3165 |
-
|
3166 |
-
#: admin/
|
3167 |
-
msgid "
|
3168 |
-
msgstr ""
|
3169 |
-
|
3170 |
-
#: admin/
|
3171 |
-
msgid ""
|
3172 |
-
|
3173 |
-
|
3174 |
-
|
3175 |
-
|
3176 |
-
|
3177 |
-
|
3178 |
-
|
3179 |
-
|
3180 |
-
|
3181 |
-
|
3182 |
-
|
3183 |
-
|
3184 |
-
msgstr ""
|
3185 |
-
|
3186 |
-
#: admin/
|
3187 |
-
msgid "
|
3188 |
-
msgstr ""
|
3189 |
-
|
3190 |
-
#: admin/
|
3191 |
-
msgid "
|
3192 |
-
msgstr ""
|
3193 |
-
|
3194 |
-
#: admin/
|
3195 |
-
msgid "
|
3196 |
-
msgstr ""
|
3197 |
-
|
3198 |
-
#: admin/
|
3199 |
-
msgid ""
|
3200 |
-
|
3201 |
-
|
3202 |
-
|
3203 |
-
|
3204 |
-
|
3205 |
-
|
3206 |
-
|
3207 |
-
|
3208 |
-
msgstr ""
|
3209 |
-
|
3210 |
-
#: admin/
|
3211 |
-
msgid "
|
3212 |
-
msgstr ""
|
3213 |
-
|
3214 |
-
#: admin/
|
3215 |
-
msgid "
|
3216 |
-
msgstr ""
|
3217 |
-
|
3218 |
-
#: admin/
|
3219 |
-
msgid "
|
3220 |
-
msgstr ""
|
3221 |
-
|
3222 |
-
#: admin/
|
3223 |
-
msgid "
|
3224 |
-
msgstr ""
|
3225 |
-
|
3226 |
-
#: admin/
|
3227 |
-
msgid ""
|
3228 |
-
|
3229 |
-
|
3230 |
-
|
3231 |
-
|
3232 |
-
|
3233 |
-
|
3234 |
-
|
3235 |
-
|
3236 |
-
|
3237 |
-
|
3238 |
-
|
3239 |
-
|
3240 |
-
|
3241 |
-
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
-
|
3246 |
-
|
3247 |
-
|
3248 |
-
|
3249 |
-
|
3250 |
-
|
3251 |
-
|
3252 |
-
|
3253 |
-
|
3254 |
-
|
3255 |
-
|
3256 |
-
|
3257 |
-
|
3258 |
-
|
3259 |
-
"
|
3260 |
-
|
3261 |
-
|
3262 |
-
|
3263 |
-
|
3264 |
-
|
3265 |
-
|
3266 |
-
|
3267 |
-
"
|
3268 |
-
|
3269 |
-
|
3270 |
-
|
3271 |
-
|
3272 |
-
|
3273 |
-
|
3274 |
-
#:
|
3275 |
-
|
3276 |
-
|
3277 |
-
|
3278 |
-
|
3279 |
-
|
3280 |
-
|
3281 |
-
|
3282 |
-
|
3283 |
-
|
3284 |
-
|
3285 |
-
|
3286 |
-
#:
|
3287 |
-
msgid "
|
3288 |
-
msgstr ""
|
3289 |
-
|
3290 |
-
#:
|
3291 |
-
|
3292 |
-
|
3293 |
-
|
3294 |
-
|
3295 |
-
|
3296 |
-
|
3297 |
-
|
3298 |
-
|
3299 |
-
|
3300 |
-
|
3301 |
-
|
3302 |
-
|
3303 |
-
|
3304 |
-
|
3305 |
-
|
3306 |
-
|
3307 |
-
|
3308 |
-
|
3309 |
-
|
3310 |
-
|
3311 |
-
|
3312 |
-
|
3313 |
-
|
3314 |
-
|
3315 |
-
|
3316 |
-
|
3317 |
-
|
3318 |
-
|
3319 |
-
|
3320 |
-
|
3321 |
-
|
3322 |
-
|
3323 |
-
|
3324 |
-
|
3325 |
-
|
3326 |
-
|
3327 |
-
|
3328 |
-
|
3329 |
-
|
3330 |
-
#:
|
3331 |
-
msgid "
|
3332 |
-
msgstr ""
|
3333 |
-
|
3334 |
-
#:
|
3335 |
-
|
3336 |
-
|
3337 |
-
|
3338 |
-
|
3339 |
-
|
3340 |
-
|
3341 |
-
|
3342 |
-
|
3343 |
-
|
3344 |
-
|
3345 |
-
|
3346 |
-
|
3347 |
-
|
3348 |
-
|
3349 |
-
|
3350 |
-
|
3351 |
-
|
3352 |
-
|
3353 |
-
|
3354 |
-
|
3355 |
-
|
3356 |
-
|
3357 |
-
|
3358 |
-
|
3359 |
-
|
3360 |
-
|
3361 |
-
|
3362 |
-
|
3363 |
-
|
3364 |
-
|
3365 |
-
|
3366 |
-
|
3367 |
-
|
3368 |
-
|
3369 |
-
|
3370 |
-
|
3371 |
-
|
3372 |
-
|
3373 |
-
|
3374 |
-
|
3375 |
-
|
3376 |
-
|
3377 |
-
|
3378 |
-
|
3379 |
-
|
3380 |
-
|
3381 |
-
|
3382 |
-
#:
|
3383 |
-
msgid "
|
3384 |
-
msgstr ""
|
3385 |
-
|
3386 |
-
#:
|
3387 |
-
msgid "
|
3388 |
-
msgstr ""
|
3389 |
-
|
3390 |
-
#:
|
3391 |
-
msgid "
|
3392 |
-
msgstr ""
|
3393 |
-
|
3394 |
-
#:
|
3395 |
-
|
3396 |
-
|
3397 |
-
|
3398 |
-
|
3399 |
-
|
3400 |
-
|
3401 |
-
|
3402 |
-
|
3403 |
-
|
3404 |
-
|
3405 |
-
|
3406 |
-
|
3407 |
-
|
3408 |
-
|
3409 |
-
|
3410 |
-
|
3411 |
-
|
3412 |
-
|
3413 |
-
|
3414 |
-
|
3415 |
-
|
3416 |
-
|
3417 |
-
|
3418 |
-
|
3419 |
-
|
3420 |
-
|
3421 |
-
|
3422 |
-
|
3423 |
-
|
3424 |
-
|
3425 |
-
|
3426 |
-
|
3427 |
-
|
3428 |
-
|
3429 |
-
|
3430 |
-
|
3431 |
-
|
3432 |
-
|
3433 |
-
|
3434 |
-
|
3435 |
-
|
3436 |
-
|
3437 |
-
|
3438 |
-
|
3439 |
-
|
3440 |
-
|
3441 |
-
|
3442 |
-
#:
|
3443 |
-
|
3444 |
-
|
3445 |
-
|
3446 |
-
|
3447 |
-
|
3448 |
-
|
3449 |
-
|
3450 |
-
#:
|
3451 |
-
msgid "
|
3452 |
-
msgstr ""
|
3453 |
-
|
3454 |
-
#:
|
3455 |
-
|
3456 |
-
|
3457 |
-
|
3458 |
-
#:
|
3459 |
-
|
3460 |
-
|
3461 |
-
|
3462 |
-
|
3463 |
-
|
3464 |
-
|
3465 |
-
|
3466 |
-
|
3467 |
-
|
3468 |
-
|
3469 |
-
|
3470 |
-
|
3471 |
-
|
3472 |
-
|
3473 |
-
|
3474 |
-
|
3475 |
-
|
3476 |
-
|
3477 |
-
|
3478 |
-
|
3479 |
-
|
3480 |
-
|
3481 |
-
|
3482 |
-
|
3483 |
-
|
3484 |
-
|
3485 |
-
|
3486 |
-
|
3487 |
-
|
3488 |
-
|
3489 |
-
|
3490 |
-
|
3491 |
-
|
3492 |
-
|
3493 |
-
|
3494 |
-
|
3495 |
-
|
3496 |
-
|
3497 |
-
|
3498 |
-
#:
|
3499 |
-
msgid "
|
3500 |
-
msgstr ""
|
3501 |
-
|
3502 |
-
#:
|
3503 |
-
|
3504 |
-
|
3505 |
-
|
3506 |
-
|
3507 |
-
|
3508 |
-
|
3509 |
-
|
3510 |
-
|
3511 |
-
|
3512 |
-
|
3513 |
-
|
3514 |
-
|
3515 |
-
|
3516 |
-
|
3517 |
-
|
3518 |
-
|
3519 |
-
|
3520 |
-
|
3521 |
-
|
3522 |
-
|
3523 |
-
|
3524 |
-
|
3525 |
-
|
3526 |
-
|
3527 |
-
|
3528 |
-
|
3529 |
-
|
3530 |
-
|
3531 |
-
|
3532 |
-
|
3533 |
-
|
3534 |
-
|
3535 |
-
|
3536 |
-
|
3537 |
-
|
3538 |
-
|
3539 |
-
|
3540 |
-
|
3541 |
-
|
3542 |
-
|
3543 |
-
|
3544 |
-
msgstr
|
3545 |
-
|
3546 |
-
#:
|
3547 |
-
msgid "
|
3548 |
-
msgstr ""
|
3549 |
-
|
3550 |
-
#:
|
3551 |
-
msgid "
|
3552 |
-
msgstr ""
|
3553 |
-
|
3554 |
-
#:
|
3555 |
-
msgid "
|
3556 |
-
msgstr ""
|
3557 |
-
|
3558 |
-
#:
|
3559 |
-
|
3560 |
-
|
3561 |
-
|
3562 |
-
|
3563 |
-
|
3564 |
-
|
3565 |
-
|
3566 |
-
|
3567 |
-
|
3568 |
-
|
3569 |
-
|
3570 |
-
|
3571 |
-
|
3572 |
-
|
3573 |
-
|
3574 |
-
|
3575 |
-
|
3576 |
-
|
3577 |
-
|
3578 |
-
|
3579 |
-
|
3580 |
-
|
3581 |
-
|
3582 |
-
|
3583 |
-
|
3584 |
-
|
3585 |
-
|
3586 |
-
|
3587 |
-
|
3588 |
-
|
3589 |
-
|
3590 |
-
|
3591 |
-
|
3592 |
-
|
3593 |
-
|
3594 |
-
|
3595 |
-
|
3596 |
-
|
3597 |
-
|
3598 |
-
|
3599 |
-
|
3600 |
-
|
3601 |
-
|
3602 |
-
|
3603 |
-
|
3604 |
-
|
3605 |
-
|
3606 |
-
|
3607 |
-
|
3608 |
-
|
3609 |
-
|
3610 |
-
|
3611 |
-
|
3612 |
-
|
3613 |
-
|
3614 |
-
#:
|
3615 |
-
|
3616 |
-
|
3617 |
-
|
3618 |
-
|
3619 |
-
|
3620 |
-
|
3621 |
-
|
3622 |
-
|
3623 |
-
|
3624 |
-
|
3625 |
-
|
3626 |
-
|
3627 |
-
|
3628 |
-
|
3629 |
-
|
3630 |
-
|
3631 |
-
|
3632 |
-
|
3633 |
-
|
3634 |
-
|
3635 |
-
|
3636 |
-
|
3637 |
-
|
3638 |
-
|
3639 |
-
"
|
3640 |
-
msgstr ""
|
3641 |
-
|
3642 |
-
#:
|
3643 |
-
msgid ""
|
3644 |
-
|
3645 |
-
|
3646 |
-
|
3647 |
-
|
3648 |
-
|
3649 |
-
|
3650 |
-
|
3651 |
-
|
3652 |
-
|
3653 |
-
|
3654 |
-
|
3655 |
-
|
3656 |
-
|
3657 |
-
|
3658 |
-
|
3659 |
-
|
3660 |
-
|
3661 |
-
|
3662 |
-
|
3663 |
-
|
3664 |
-
|
3665 |
-
|
3666 |
-
|
3667 |
-
"
|
3668 |
-
msgstr ""
|
3669 |
-
|
3670 |
-
#:
|
3671 |
-
msgid "
|
3672 |
-
msgstr ""
|
3673 |
-
|
3674 |
-
#:
|
3675 |
-
msgid "
|
3676 |
-
msgstr ""
|
3677 |
-
|
3678 |
-
#:
|
3679 |
-
msgid "
|
3680 |
-
msgstr ""
|
3681 |
-
|
3682 |
-
#:
|
3683 |
-
msgid "
|
3684 |
-
msgstr ""
|
3685 |
-
|
3686 |
-
#:
|
3687 |
-
msgid "
|
3688 |
-
msgstr ""
|
3689 |
-
|
3690 |
-
#:
|
3691 |
-
msgid ""
|
3692 |
-
|
3693 |
-
|
3694 |
-
|
3695 |
-
|
3696 |
-
|
3697 |
-
|
3698 |
-
|
3699 |
-
"
|
3700 |
-
|
3701 |
-
|
3702 |
-
|
3703 |
-
|
3704 |
-
|
3705 |
-
|
3706 |
-
#:
|
3707 |
-
|
3708 |
-
|
3709 |
-
|
3710 |
-
|
3711 |
-
|
3712 |
-
|
3713 |
-
|
3714 |
-
|
3715 |
-
|
3716 |
-
|
3717 |
-
|
3718 |
-
|
3719 |
-
|
3720 |
-
|
3721 |
-
|
3722 |
-
|
3723 |
-
|
3724 |
-
|
3725 |
-
|
3726 |
-
#:
|
3727 |
-
msgid "
|
3728 |
-
msgstr ""
|
3729 |
-
|
3730 |
-
#:
|
3731 |
-
msgid "
|
3732 |
-
msgstr ""
|
3733 |
-
|
3734 |
-
#:
|
3735 |
-
msgid "
|
3736 |
-
msgstr ""
|
3737 |
-
|
3738 |
-
#:
|
3739 |
-
msgid ""
|
3740 |
-
|
3741 |
-
|
3742 |
-
|
3743 |
-
|
3744 |
-
|
3745 |
-
|
3746 |
-
|
3747 |
-
|
3748 |
-
|
3749 |
-
|
3750 |
-
|
3751 |
-
|
3752 |
-
|
3753 |
-
|
3754 |
-
|
3755 |
-
|
3756 |
-
|
3757 |
-
|
3758 |
-
|
3759 |
-
|
3760 |
-
|
3761 |
-
|
3762 |
-
#:
|
3763 |
-
msgid "
|
3764 |
-
msgstr ""
|
3765 |
-
|
3766 |
-
#:
|
3767 |
-
msgid "
|
3768 |
-
msgstr ""
|
3769 |
-
|
3770 |
-
#:
|
3771 |
-
|
3772 |
-
|
3773 |
-
|
3774 |
-
|
3775 |
-
|
3776 |
-
|
3777 |
-
|
3778 |
-
|
3779 |
-
|
3780 |
-
|
3781 |
-
|
3782 |
-
|
3783 |
-
|
3784 |
-
|
3785 |
-
|
3786 |
-
|
3787 |
-
|
3788 |
-
|
3789 |
-
|
3790 |
-
|
3791 |
-
|
3792 |
-
|
3793 |
-
|
3794 |
-
|
3795 |
-
|
3796 |
-
|
3797 |
-
|
3798 |
-
|
3799 |
-
|
3800 |
-
|
3801 |
-
|
3802 |
-
|
3803 |
-
|
3804 |
-
|
3805 |
-
|
3806 |
-
|
3807 |
-
|
3808 |
-
|
3809 |
-
|
3810 |
-
|
3811 |
-
|
3812 |
-
|
3813 |
-
|
3814 |
-
|
3815 |
-
"
|
3816 |
-
|
3817 |
-
|
3818 |
-
|
3819 |
-
|
3820 |
-
|
3821 |
-
|
3822 |
-
|
3823 |
-
|
3824 |
-
|
3825 |
-
|
3826 |
-
|
3827 |
-
|
3828 |
-
|
3829 |
-
|
3830 |
-
|
3831 |
-
|
3832 |
-
|
3833 |
-
|
3834 |
-
|
3835 |
-
|
3836 |
-
|
3837 |
-
|
3838 |
-
|
3839 |
-
|
3840 |
-
|
3841 |
-
|
3842 |
-
|
3843 |
-
|
3844 |
-
|
3845 |
-
|
3846 |
-
#:
|
3847 |
-
|
3848 |
-
|
3849 |
-
|
3850 |
-
|
3851 |
-
|
3852 |
-
|
3853 |
-
|
3854 |
-
|
3855 |
-
|
3856 |
-
|
3857 |
-
|
3858 |
-
|
3859 |
-
|
3860 |
-
|
3861 |
-
|
3862 |
-
|
3863 |
-
|
3864 |
-
|
3865 |
-
|
3866 |
-
|
3867 |
-
|
3868 |
-
|
3869 |
-
|
3870 |
-
|
3871 |
-
"
|
3872 |
-
msgstr ""
|
3873 |
-
|
3874 |
-
#:
|
3875 |
-
msgid "
|
3876 |
-
msgstr ""
|
3877 |
-
|
3878 |
-
#:
|
3879 |
-
msgid "
|
3880 |
-
msgstr ""
|
3881 |
-
|
3882 |
-
#:
|
3883 |
-
msgid "
|
3884 |
-
msgstr ""
|
3885 |
-
|
3886 |
-
#:
|
3887 |
-
msgid "
|
3888 |
-
msgstr ""
|
3889 |
-
|
3890 |
-
#:
|
3891 |
-
msgid "
|
3892 |
-
msgstr ""
|
3893 |
-
|
3894 |
-
#:
|
3895 |
-
|
3896 |
-
|
3897 |
-
|
3898 |
-
#:
|
3899 |
-
msgid "
|
3900 |
-
msgstr ""
|
3901 |
-
|
3902 |
-
#:
|
3903 |
-
msgid "
|
3904 |
-
msgstr ""
|
3905 |
-
|
3906 |
-
#:
|
3907 |
-
msgid "
|
3908 |
-
msgstr ""
|
3909 |
-
|
3910 |
-
#:
|
3911 |
-
msgid ""
|
3912 |
-
|
3913 |
-
|
3914 |
-
|
3915 |
-
"
|
3916 |
-
msgstr ""
|
3917 |
-
|
3918 |
-
#:
|
3919 |
-
msgid ""
|
3920 |
-
|
3921 |
-
|
3922 |
-
|
3923 |
-
|
3924 |
-
|
3925 |
-
|
3926 |
-
|
3927 |
-
|
3928 |
-
|
3929 |
-
|
3930 |
-
|
3931 |
-
|
3932 |
-
|
3933 |
-
|
3934 |
-
|
3935 |
-
|
3936 |
-
|
3937 |
-
|
3938 |
-
|
3939 |
-
"
|
3940 |
-
|
3941 |
-
|
3942 |
-
|
3943 |
-
|
3944 |
-
|
3945 |
-
|
3946 |
-
|
3947 |
-
|
3948 |
-
|
3949 |
-
|
3950 |
-
|
3951 |
-
|
3952 |
-
|
3953 |
-
|
3954 |
-
|
3955 |
-
|
3956 |
-
|
3957 |
-
|
3958 |
-
|
3959 |
-
|
3960 |
-
|
3961 |
-
|
3962 |
-
|
3963 |
-
|
3964 |
-
|
3965 |
-
|
3966 |
-
|
3967 |
-
|
3968 |
-
|
3969 |
-
|
3970 |
-
|
3971 |
-
|
3972 |
-
|
3973 |
-
|
3974 |
-
|
3975 |
-
|
3976 |
-
|
3977 |
-
|
3978 |
-
|
3979 |
-
|
3980 |
-
|
3981 |
-
|
3982 |
-
|
3983 |
-
|
3984 |
-
|
3985 |
-
|
3986 |
-
|
3987 |
-
|
3988 |
-
|
3989 |
-
|
3990 |
-
|
3991 |
-
|
3992 |
-
|
3993 |
-
|
3994 |
-
|
3995 |
-
"
|
3996 |
-
"
|
3997 |
-
|
3998 |
-
|
3999 |
-
|
4000 |
-
|
4001 |
-
|
4002 |
-
|
4003 |
-
|
4004 |
-
|
4005 |
-
|
4006 |
-
|
4007 |
-
|
4008 |
-
|
4009 |
-
|
4010 |
-
|
4011 |
-
|
4012 |
-
|
4013 |
-
|
4014 |
-
|
4015 |
-
|
4016 |
-
|
4017 |
-
|
4018 |
-
|
4019 |
-
|
4020 |
-
|
4021 |
-
|
4022 |
-
#:
|
4023 |
-
|
4024 |
-
|
4025 |
-
|
4026 |
-
|
4027 |
-
|
4028 |
-
|
4029 |
-
|
4030 |
-
|
4031 |
-
|
4032 |
-
|
4033 |
-
|
4034 |
-
|
4035 |
-
|
4036 |
-
|
4037 |
-
|
4038 |
-
|
4039 |
-
|
4040 |
-
|
4041 |
-
|
4042 |
-
|
4043 |
-
|
4044 |
-
|
4045 |
-
|
4046 |
-
|
4047 |
-
|
4048 |
-
|
4049 |
-
|
4050 |
-
|
4051 |
-
|
4052 |
-
|
4053 |
-
|
4054 |
-
|
4055 |
-
|
4056 |
-
|
4057 |
-
|
4058 |
-
|
4059 |
-
|
4060 |
-
|
4061 |
-
|
4062 |
-
#:
|
4063 |
-
msgid "
|
4064 |
-
|
4065 |
-
|
4066 |
-
|
4067 |
-
|
4068 |
-
|
4069 |
-
|
4070 |
-
|
4071 |
-
|
4072 |
-
msgstr ""
|
4073 |
-
|
4074 |
-
#:
|
4075 |
-
msgid "
|
4076 |
-
|
4077 |
-
|
4078 |
-
|
4079 |
-
|
4080 |
-
|
4081 |
-
|
4082 |
-
|
4083 |
-
|
4084 |
-
msgstr ""
|
4085 |
-
|
4086 |
-
#:
|
4087 |
-
msgid "
|
4088 |
-
|
4089 |
-
|
4090 |
-
|
4091 |
-
|
4092 |
-
|
4093 |
-
|
4094 |
-
|
4095 |
-
|
4096 |
-
msgstr ""
|
4097 |
-
|
4098 |
-
#:
|
4099 |
-
msgid "
|
4100 |
-
|
4101 |
-
|
4102 |
-
|
4103 |
-
|
4104 |
-
|
4105 |
-
|
4106 |
-
|
4107 |
-
|
4108 |
-
|
4109 |
-
|
4110 |
-
|
4111 |
-
|
4112 |
-
|
4113 |
-
|
4114 |
-
|
4115 |
-
|
4116 |
-
|
4117 |
-
|
4118 |
-
|
4119 |
-
|
4120 |
-
|
4121 |
-
|
4122 |
-
|
4123 |
-
|
4124 |
-
|
4125 |
-
|
4126 |
-
|
4127 |
-
|
4128 |
-
|
4129 |
-
|
4130 |
-
|
4131 |
-
|
4132 |
-
|
4133 |
-
|
4134 |
-
|
4135 |
-
|
4136 |
-
|
4137 |
-
|
4138 |
-
|
4139 |
-
|
4140 |
-
|
4141 |
-
|
4142 |
-
|
4143 |
-
|
4144 |
-
|
4145 |
-
|
4146 |
-
|
4147 |
-
|
4148 |
-
|
4149 |
-
|
4150 |
-
|
4151 |
-
|
4152 |
-
|
4153 |
-
|
4154 |
-
|
4155 |
-
|
4156 |
-
|
4157 |
-
|
4158 |
-
|
4159 |
-
|
4160 |
-
|
4161 |
-
|
4162 |
-
|
4163 |
-
|
4164 |
-
|
4165 |
-
|
4166 |
-
|
4167 |
-
|
4168 |
-
|
4169 |
-
|
4170 |
-
|
4171 |
-
|
4172 |
-
|
4173 |
-
|
4174 |
-
|
4175 |
-
|
4176 |
-
|
4177 |
-
|
4178 |
-
|
4179 |
-
|
4180 |
-
|
4181 |
-
|
4182 |
-
|
4183 |
-
|
4184 |
-
|
4185 |
-
|
4186 |
-
|
4187 |
-
|
4188 |
-
|
4189 |
-
|
4190 |
-
|
4191 |
-
|
4192 |
-
|
4193 |
-
|
4194 |
-
|
4195 |
-
|
4196 |
-
|
4197 |
-
|
4198 |
-
|
4199 |
-
|
4200 |
-
|
4201 |
-
|
4202 |
-
|
4203 |
-
|
4204 |
-
|
4205 |
-
|
4206 |
-
|
4207 |
-
|
4208 |
-
|
4209 |
-
|
4210 |
-
|
4211 |
-
|
4212 |
-
#:
|
4213 |
-
msgid "
|
4214 |
-
msgstr ""
|
4215 |
-
|
4216 |
-
#:
|
4217 |
-
msgid ""
|
4218 |
-
|
4219 |
-
|
4220 |
-
|
4221 |
-
|
4222 |
-
|
4223 |
-
|
4224 |
-
|
4225 |
-
|
4226 |
-
|
4227 |
-
|
4228 |
-
|
4229 |
-
|
4230 |
-
|
4231 |
-
|
4232 |
-
|
4233 |
-
|
4234 |
-
|
4235 |
-
|
4236 |
-
|
4237 |
-
"
|
4238 |
-
msgstr ""
|
4239 |
-
|
4240 |
-
#:
|
4241 |
-
msgid "
|
4242 |
-
msgstr ""
|
4243 |
-
|
4244 |
-
#:
|
4245 |
-
msgid "
|
4246 |
-
msgstr ""
|
4247 |
-
|
4248 |
-
#:
|
4249 |
-
msgid "
|
4250 |
-
msgstr ""
|
4251 |
-
|
4252 |
-
#:
|
4253 |
-
msgid "
|
4254 |
-
msgstr ""
|
4255 |
-
|
4256 |
-
#:
|
4257 |
-
msgid "
|
4258 |
-
msgstr ""
|
4259 |
-
|
4260 |
-
#:
|
4261 |
-
msgid ""
|
4262 |
-
|
4263 |
-
|
4264 |
-
|
4265 |
-
|
4266 |
-
|
4267 |
-
|
4268 |
-
|
4269 |
-
"
|
4270 |
-
msgstr ""
|
4271 |
-
|
4272 |
-
#:
|
4273 |
-
msgid "
|
4274 |
-
msgstr ""
|
4275 |
-
|
4276 |
-
#:
|
4277 |
-
msgid "
|
4278 |
-
msgstr ""
|
4279 |
-
|
4280 |
-
#:
|
4281 |
-
msgid "
|
4282 |
-
msgstr ""
|
4283 |
-
|
4284 |
-
#:
|
4285 |
-
msgid "
|
4286 |
-
msgstr ""
|
4287 |
-
|
4288 |
-
#:
|
4289 |
-
msgid "
|
4290 |
-
msgstr ""
|
4291 |
-
|
4292 |
-
#:
|
4293 |
-
msgid "
|
4294 |
-
msgstr ""
|
4295 |
-
|
4296 |
-
#:
|
4297 |
-
msgid "
|
4298 |
-
msgstr ""
|
4299 |
-
|
4300 |
-
#:
|
4301 |
-
msgid "
|
4302 |
-
msgstr ""
|
4303 |
-
|
4304 |
-
#:
|
4305 |
-
msgid "
|
4306 |
-
msgstr ""
|
4307 |
-
|
4308 |
-
#:
|
4309 |
-
msgid "
|
4310 |
-
msgstr ""
|
4311 |
-
|
4312 |
-
#:
|
4313 |
-
msgid "
|
4314 |
-
msgstr ""
|
4315 |
-
|
4316 |
-
#:
|
4317 |
-
msgid ""
|
4318 |
-
|
4319 |
-
|
4320 |
-
|
4321 |
-
|
4322 |
-
|
4323 |
-
|
4324 |
-
|
4325 |
-
|
4326 |
-
|
4327 |
-
|
4328 |
-
|
4329 |
-
|
4330 |
-
|
4331 |
-
|
4332 |
-
|
4333 |
-
|
4334 |
-
|
4335 |
-
|
4336 |
-
#:
|
4337 |
-
|
4338 |
-
|
4339 |
-
|
4340 |
-
#: front-end/default-fields/
|
4341 |
-
msgid "Please
|
4342 |
-
msgstr ""
|
4343 |
-
|
4344 |
-
#:
|
4345 |
-
|
4346 |
-
|
4347 |
-
|
4348 |
-
|
4349 |
-
|
4350 |
-
|
4351 |
-
|
4352 |
-
|
4353 |
-
|
4354 |
-
|
4355 |
-
|
4356 |
-
|
4357 |
-
|
4358 |
-
|
4359 |
-
|
4360 |
-
|
4361 |
-
|
4362 |
-
|
4363 |
-
|
4364 |
-
|
4365 |
-
|
4366 |
-
|
4367 |
-
|
4368 |
-
|
4369 |
-
|
4370 |
-
|
4371 |
-
|
4372 |
-
|
4373 |
-
|
4374 |
-
|
4375 |
-
|
4376 |
-
|
4377 |
-
|
4378 |
-
|
4379 |
-
|
4380 |
-
|
4381 |
-
|
4382 |
-
|
4383 |
-
|
4384 |
-
|
4385 |
-
|
4386 |
-
|
4387 |
-
|
4388 |
-
#: front-end/
|
4389 |
-
|
4390 |
-
|
4391 |
-
|
4392 |
-
|
4393 |
-
|
4394 |
-
|
4395 |
-
|
4396 |
-
|
4397 |
-
|
4398 |
-
|
4399 |
-
|
4400 |
-
|
4401 |
-
|
4402 |
-
|
4403 |
-
|
4404 |
-
|
4405 |
-
|
4406 |
-
|
4407 |
-
|
4408 |
-
|
4409 |
-
|
4410 |
-
|
4411 |
-
|
4412 |
-
#: front-end/
|
4413 |
-
|
4414 |
-
|
4415 |
-
|
4416 |
-
#: front-end/
|
4417 |
-
|
4418 |
-
|
4419 |
-
|
4420 |
-
#: front-end/
|
4421 |
-
|
4422 |
-
|
4423 |
-
|
4424 |
-
#:
|
4425 |
-
|
4426 |
-
|
4427 |
-
|
4428 |
-
|
4429 |
-
|
4430 |
-
|
4431 |
-
|
4432 |
-
#:
|
4433 |
-
|
4434 |
-
|
4435 |
-
|
4436 |
-
|
4437 |
-
|
4438 |
-
|
4439 |
-
|
4440 |
-
|
4441 |
-
|
4442 |
-
|
4443 |
-
|
4444 |
-
|
4445 |
-
|
4446 |
-
|
4447 |
-
|
4448 |
-
|
4449 |
-
|
4450 |
-
|
4451 |
-
|
4452 |
-
|
4453 |
-
|
4454 |
-
|
4455 |
-
|
4456 |
-
|
4457 |
-
|
4458 |
-
|
4459 |
-
|
4460 |
-
|
4461 |
-
|
4462 |
-
|
4463 |
-
|
4464 |
-
|
4465 |
-
|
4466 |
-
|
4467 |
-
|
4468 |
-
|
4469 |
-
|
4470 |
-
|
4471 |
-
|
4472 |
-
|
4473 |
-
|
4474 |
-
|
4475 |
-
|
4476 |
-
|
4477 |
-
|
4478 |
-
|
4479 |
-
|
4480 |
-
|
4481 |
-
|
4482 |
-
|
4483 |
-
|
4484 |
-
|
4485 |
-
|
4486 |
-
|
4487 |
-
|
4488 |
-
|
4489 |
-
|
4490 |
-
|
4491 |
-
|
4492 |
-
|
4493 |
-
|
4494 |
-
|
4495 |
-
|
4496 |
-
|
4497 |
-
|
4498 |
-
|
4499 |
-
|
4500 |
-
|
4501 |
-
|
4502 |
-
|
4503 |
-
|
4504 |
-
|
4505 |
-
|
4506 |
-
|
4507 |
-
|
4508 |
-
|
4509 |
-
|
4510 |
-
|
4511 |
-
|
4512 |
-
|
4513 |
-
|
4514 |
-
|
4515 |
-
|
4516 |
-
|
4517 |
-
|
4518 |
-
|
4519 |
-
|
4520 |
-
|
4521 |
-
|
4522 |
-
|
4523 |
-
|
4524 |
-
|
4525 |
-
|
4526 |
-
|
4527 |
-
|
4528 |
-
|
4529 |
-
|
4530 |
-
|
4531 |
-
|
4532 |
-
|
4533 |
-
|
4534 |
-
|
4535 |
-
|
4536 |
-
|
4537 |
-
|
4538 |
-
|
4539 |
-
|
4540 |
-
|
4541 |
-
|
4542 |
-
|
4543 |
-
|
4544 |
-
|
4545 |
-
|
4546 |
-
|
4547 |
-
|
4548 |
-
|
4549 |
-
|
4550 |
-
|
4551 |
-
|
4552 |
-
|
4553 |
-
|
4554 |
-
|
4555 |
-
|
4556 |
-
|
4557 |
-
|
4558 |
-
|
4559 |
-
|
4560 |
-
|
4561 |
-
|
4562 |
-
|
4563 |
-
|
4564 |
-
|
4565 |
-
|
4566 |
-
|
4567 |
-
|
4568 |
-
|
4569 |
-
|
4570 |
-
|
4571 |
-
|
4572 |
-
|
4573 |
-
|
4574 |
-
|
4575 |
-
|
4576 |
-
|
4577 |
-
|
4578 |
-
|
4579 |
-
|
4580 |
-
|
4581 |
-
|
4582 |
-
|
4583 |
-
|
4584 |
-
|
4585 |
-
|
4586 |
-
|
4587 |
-
|
4588 |
-
|
4589 |
-
|
4590 |
-
|
4591 |
-
|
4592 |
-
|
4593 |
-
|
4594 |
-
|
4595 |
-
|
4596 |
-
|
4597 |
-
|
4598 |
-
|
4599 |
-
|
4600 |
-
|
4601 |
-
|
4602 |
-
|
4603 |
-
|
4604 |
-
|
4605 |
-
|
4606 |
-
|
4607 |
-
|
4608 |
-
|
4609 |
-
|
4610 |
-
|
4611 |
-
|
4612 |
-
|
4613 |
-
|
4614 |
-
|
4615 |
-
|
4616 |
-
|
4617 |
-
|
4618 |
-
|
4619 |
-
|
4620 |
-
|
4621 |
-
|
4622 |
-
|
4623 |
-
|
4624 |
-
|
4625 |
-
|
4626 |
-
|
4627 |
-
|
4628 |
-
|
4629 |
-
|
4630 |
-
|
4631 |
-
|
4632 |
-
|
4633 |
-
|
4634 |
-
|
4635 |
-
|
4636 |
-
|
4637 |
-
|
4638 |
-
|
4639 |
-
|
4640 |
-
|
4641 |
-
|
4642 |
-
|
4643 |
-
|
4644 |
-
|
4645 |
-
|
4646 |
-
|
4647 |
-
|
4648 |
-
|
4649 |
-
|
4650 |
-
|
4651 |
-
|
4652 |
-
|
4653 |
-
|
4654 |
-
|
4655 |
-
|
4656 |
-
|
4657 |
-
|
4658 |
-
|
4659 |
-
|
4660 |
-
|
4661 |
-
|
4662 |
-
msgstr ""
|
4663 |
-
|
4664 |
-
#:
|
4665 |
-
msgid "
|
4666 |
-
msgstr ""
|
4667 |
-
|
4668 |
-
#:
|
4669 |
-
msgid "
|
4670 |
-
msgstr ""
|
4671 |
-
|
4672 |
-
#:
|
4673 |
-
msgid "
|
4674 |
-
msgstr ""
|
4675 |
-
|
4676 |
-
#:
|
4677 |
-
msgid "
|
4678 |
-
msgstr ""
|
4679 |
-
|
4680 |
-
#:
|
4681 |
-
msgid "
|
4682 |
-
msgstr ""
|
4683 |
-
|
4684 |
-
#:
|
4685 |
-
msgid "
|
4686 |
-
msgstr ""
|
4687 |
-
|
4688 |
-
#:
|
4689 |
-
msgid ""
|
4690 |
-
|
4691 |
-
|
4692 |
-
|
4693 |
-
|
4694 |
-
|
4695 |
-
|
4696 |
-
|
4697 |
-
|
4698 |
-
|
4699 |
-
|
4700 |
-
|
4701 |
-
|
4702 |
-
|
4703 |
-
|
4704 |
-
|
4705 |
-
|
4706 |
-
|
4707 |
-
|
4708 |
-
|
4709 |
-
|
4710 |
-
|
4711 |
-
|
4712 |
-
|
4713 |
-
|
4714 |
-
|
4715 |
-
|
4716 |
-
|
4717 |
-
"
|
4718 |
-
|
4719 |
-
|
4720 |
-
|
4721 |
-
|
4722 |
-
|
4723 |
-
|
4724 |
-
|
4725 |
-
|
4726 |
-
|
4727 |
-
|
4728 |
-
|
4729 |
-
|
4730 |
-
|
4731 |
-
|
4732 |
-
|
4733 |
-
|
4734 |
-
|
4735 |
-
|
4736 |
-
|
4737 |
-
|
4738 |
-
|
4739 |
-
|
4740 |
-
|
4741 |
-
|
4742 |
-
|
4743 |
-
|
4744 |
-
|
4745 |
-
|
4746 |
-
|
4747 |
-
|
4748 |
-
|
4749 |
-
|
4750 |
-
|
4751 |
-
|
4752 |
-
|
4753 |
-
|
4754 |
-
|
4755 |
-
|
4756 |
-
|
4757 |
-
|
4758 |
-
|
4759 |
-
|
4760 |
-
|
4761 |
-
|
4762 |
-
|
4763 |
-
|
4764 |
-
|
4765 |
-
|
4766 |
-
|
4767 |
-
|
4768 |
-
|
4769 |
-
|
4770 |
-
|
4771 |
-
|
4772 |
-
|
4773 |
-
|
4774 |
-
|
4775 |
-
|
4776 |
-
|
4777 |
-
|
4778 |
-
|
4779 |
-
|
4780 |
-
|
4781 |
-
|
4782 |
-
|
4783 |
-
|
4784 |
-
|
4785 |
-
|
4786 |
-
|
4787 |
-
|
4788 |
-
|
4789 |
-
|
4790 |
-
|
4791 |
-
|
4792 |
-
|
4793 |
-
|
4794 |
-
|
4795 |
-
|
4796 |
-
|
4797 |
-
|
4798 |
-
|
4799 |
-
|
4800 |
-
|
4801 |
-
|
4802 |
-
|
4803 |
-
|
4804 |
-
|
4805 |
-
|
4806 |
-
|
4807 |
-
|
4808 |
-
|
4809 |
-
|
4810 |
-
|
4811 |
-
|
4812 |
-
|
4813 |
-
|
4814 |
-
|
4815 |
-
|
4816 |
-
|
4817 |
-
|
4818 |
-
|
4819 |
-
|
4820 |
-
|
4821 |
-
|
4822 |
-
|
4823 |
-
|
4824 |
-
#:
|
4825 |
-
|
4826 |
-
|
4827 |
-
|
4828 |
-
|
4829 |
-
|
4830 |
-
|
4831 |
-
|
4832 |
-
#:
|
4833 |
-
|
4834 |
-
|
4835 |
-
|
4836 |
-
|
4837 |
-
|
4838 |
-
|
4839 |
-
|
4840 |
-
#:
|
4841 |
-
msgid "
|
4842 |
-
msgstr ""
|
4843 |
-
|
4844 |
-
#:
|
4845 |
-
msgid "
|
4846 |
-
msgstr ""
|
4847 |
-
|
4848 |
-
#:
|
4849 |
-
|
4850 |
-
|
4851 |
-
|
4852 |
-
|
4853 |
-
|
4854 |
-
|
4855 |
-
|
4856 |
-
|
4857 |
-
|
4858 |
-
|
4859 |
-
|
4860 |
-
|
4861 |
-
|
4862 |
-
|
4863 |
-
|
4864 |
-
|
4865 |
-
|
4866 |
-
|
4867 |
-
|
4868 |
-
|
4869 |
-
|
4870 |
-
|
4871 |
-
|
4872 |
-
|
4873 |
-
|
4874 |
-
|
4875 |
-
|
4876 |
-
|
4877 |
-
|
4878 |
-
|
4879 |
-
|
4880 |
-
|
4881 |
-
|
4882 |
-
|
4883 |
-
|
4884 |
-
|
4885 |
-
|
4886 |
-
|
4887 |
-
|
4888 |
-
|
4889 |
-
|
4890 |
-
|
4891 |
-
|
4892 |
-
|
4893 |
-
|
4894 |
-
|
4895 |
-
|
4896 |
-
|
4897 |
-
|
4898 |
-
|
4899 |
-
|
4900 |
-
#:
|
4901 |
-
msgid "
|
4902 |
-
msgstr ""
|
4903 |
-
|
4904 |
-
#:
|
4905 |
-
msgid ""
|
4906 |
-
|
4907 |
-
|
4908 |
-
|
4909 |
-
|
4910 |
-
|
4911 |
-
|
4912 |
-
|
4913 |
-
|
4914 |
-
|
4915 |
-
|
4916 |
-
|
4917 |
-
|
4918 |
-
|
4919 |
-
|
4920 |
-
|
4921 |
-
"\"
|
4922 |
-
|
4923 |
-
|
4924 |
-
|
4925 |
-
|
4926 |
-
|
4927 |
-
|
4928 |
-
|
4929 |
-
|
4930 |
-
|
4931 |
-
|
4932 |
-
|
4933 |
-
|
4934 |
-
|
4935 |
-
|
4936 |
-
|
4937 |
-
|
4938 |
-
|
4939 |
-
|
4940 |
-
|
4941 |
-
"
|
4942 |
-
msgstr ""
|
4943 |
-
|
4944 |
-
#:
|
4945 |
-
msgid "
|
4946 |
-
msgstr ""
|
4947 |
-
|
4948 |
-
#:
|
4949 |
-
msgid ""
|
4950 |
-
|
4951 |
-
|
4952 |
-
|
4953 |
-
|
4954 |
-
|
4955 |
-
|
4956 |
-
|
4957 |
-
|
4958 |
-
|
4959 |
-
|
4960 |
-
|
4961 |
-
|
4962 |
-
msgstr ""
|
4963 |
-
|
4964 |
-
#:
|
4965 |
-
msgid "
|
4966 |
-
msgstr ""
|
4967 |
-
|
4968 |
-
#:
|
4969 |
-
|
4970 |
-
|
4971 |
-
|
4972 |
-
|
4973 |
-
|
4974 |
-
|
4975 |
-
|
4976 |
-
#:
|
4977 |
-
msgid "
|
4978 |
-
msgstr ""
|
4979 |
-
|
4980 |
-
#:
|
4981 |
-
msgid ""
|
4982 |
-
|
4983 |
-
|
4984 |
-
|
4985 |
-
|
4986 |
-
|
4987 |
-
|
4988 |
-
|
4989 |
-
|
4990 |
-
|
4991 |
-
|
4992 |
-
#:
|
4993 |
-
msgid "
|
4994 |
-
msgstr ""
|
4995 |
-
|
4996 |
-
#:
|
4997 |
-
|
4998 |
-
|
4999 |
-
|
5000 |
-
|
5001 |
-
|
5002 |
-
|
5003 |
-
|
5004 |
-
|
5005 |
-
"
|
5006 |
-
msgstr ""
|
5007 |
-
|
5008 |
-
#:
|
5009 |
-
|
5010 |
-
|
5011 |
-
|
5012 |
-
|
5013 |
-
|
5014 |
-
|
5015 |
-
|
5016 |
-
|
5017 |
-
"
|
5018 |
-
"
|
5019 |
-
|
5020 |
-
|
5021 |
-
|
5022 |
-
|
5023 |
-
|
5024 |
-
#:
|
5025 |
-
|
5026 |
-
|
5027 |
-
|
5028 |
-
#:
|
5029 |
-
|
5030 |
-
|
5031 |
-
|
5032 |
-
|
5033 |
-
|
5034 |
-
|
5035 |
-
|
5036 |
-
|
5037 |
-
|
5038 |
-
|
5039 |
-
|
5040 |
-
|
5041 |
-
"
|
5042 |
-
|
5043 |
-
|
5044 |
-
|
5045 |
-
"
|
5046 |
-
|
5047 |
-
|
5048 |
-
|
5049 |
-
|
5050 |
-
|
5051 |
-
|
5052 |
-
|
5053 |
-
|
5054 |
-
|
5055 |
-
|
5056 |
-
|
5057 |
-
"\
|
5058 |
-
|
5059 |
-
|
5060 |
-
|
5061 |
-
|
5062 |
-
|
5063 |
-
|
5064 |
-
|
5065 |
-
|
5066 |
-
|
5067 |
-
|
5068 |
-
|
5069 |
-
|
5070 |
-
|
5071 |
-
|
5072 |
-
#:
|
5073 |
-
msgid "
|
5074 |
-
msgstr ""
|
5075 |
-
|
5076 |
-
#:
|
5077 |
-
msgid "
|
5078 |
-
msgstr ""
|
5079 |
-
|
5080 |
-
#:
|
5081 |
-
msgid "
|
5082 |
-
msgstr ""
|
5083 |
-
|
5084 |
-
#:
|
5085 |
-
|
5086 |
-
|
5087 |
-
|
5088 |
-
|
5089 |
-
|
5090 |
-
|
5091 |
-
|
5092 |
-
|
5093 |
-
|
5094 |
-
|
5095 |
-
|
5096 |
-
|
5097 |
-
|
5098 |
-
|
5099 |
-
|
5100 |
-
|
5101 |
-
|
5102 |
-
|
5103 |
-
|
5104 |
-
|
5105 |
-
|
5106 |
-
|
5107 |
-
|
5108 |
-
|
5109 |
-
|
5110 |
-
|
5111 |
-
|
5112 |
-
|
5113 |
-
|
5114 |
-
|
5115 |
-
|
5116 |
-
|
5117 |
-
|
5118 |
-
|
5119 |
-
|
5120 |
-
|
5121 |
-
|
5122 |
-
|
5123 |
-
|
5124 |
-
|
5125 |
-
|
5126 |
-
|
5127 |
-
|
5128 |
-
|
5129 |
-
|
5130 |
-
|
5131 |
-
|
5132 |
-
#:
|
5133 |
-
msgid "
|
5134 |
-
msgstr ""
|
5135 |
-
|
5136 |
-
#:
|
5137 |
-
msgid ""
|
5138 |
-
|
5139 |
-
|
5140 |
-
|
5141 |
-
|
5142 |
-
|
5143 |
-
|
5144 |
-
|
5145 |
-
"<
|
5146 |
-
|
5147 |
-
|
5148 |
-
|
5149 |
-
|
5150 |
-
|
5151 |
-
|
5152 |
-
|
5153 |
-
|
5154 |
-
|
5155 |
-
|
5156 |
-
|
5157 |
-
"
|
5158 |
-
|
5159 |
-
|
5160 |
-
|
5161 |
-
|
5162 |
-
|
5163 |
-
|
5164 |
-
|
5165 |
-
|
5166 |
-
|
5167 |
-
|
5168 |
-
|
5169 |
-
|
5170 |
-
|
5171 |
-
|
5172 |
-
|
5173 |
-
"
|
5174 |
-
|
5175 |
-
|
5176 |
-
|
5177 |
-
|
5178 |
-
|
5179 |
-
|
5180 |
-
|
5181 |
-
|
5182 |
-
|
5183 |
-
|
5184 |
-
|
5185 |
-
"
|
5186 |
-
|
5187 |
-
|
5188 |
-
|
5189 |
-
|
5190 |
-
|
5191 |
-
|
5192 |
-
|
5193 |
-
|
5194 |
-
|
5195 |
-
|
5196 |
-
|
5197 |
-
|
5198 |
-
|
5199 |
-
|
5200 |
-
|
5201 |
-
"
|
5202 |
-
"
|
5203 |
-
|
5204 |
-
|
5205 |
-
|
5206 |
-
|
5207 |
-
|
5208 |
-
|
5209 |
-
|
5210 |
-
|
5211 |
-
|
5212 |
-
|
5213 |
-
|
5214 |
-
|
5215 |
-
|
5216 |
-
|
5217 |
-
"
|
5218 |
-
|
5219 |
-
|
5220 |
-
|
5221 |
-
"
|
5222 |
-
"
|
5223 |
-
|
5224 |
-
|
5225 |
-
|
5226 |
-
|
5227 |
-
|
5228 |
-
|
5229 |
-
|
5230 |
-
|
5231 |
-
|
5232 |
-
|
5233 |
-
|
5234 |
-
|
5235 |
-
|
5236 |
-
|
5237 |
-
"
|
5238 |
-
|
5239 |
-
|
5240 |
-
|
5241 |
-
|
5242 |
-
|
5243 |
-
|
5244 |
-
|
5245 |
-
|
5246 |
-
|
5247 |
-
|
5248 |
-
|
5249 |
-
|
5250 |
-
|
5251 |
-
|
5252 |
-
|
5253 |
-
|
5254 |
-
|
5255 |
-
|
5256 |
-
|
5257 |
-
|
5258 |
-
|
5259 |
-
|
5260 |
-
|
5261 |
-
|
5262 |
-
|
5263 |
-
|
5264 |
-
|
5265 |
-
|
5266 |
-
|
5267 |
-
|
5268 |
-
|
5269 |
-
|
5270 |
-
|
5271 |
-
|
5272 |
-
|
5273 |
-
|
5274 |
-
|
5275 |
-
|
5276 |
-
#: modules/
|
5277 |
-
msgid "
|
5278 |
-
msgstr ""
|
5279 |
-
|
5280 |
-
#:
|
5281 |
-
|
5282 |
-
|
5283 |
-
|
5284 |
-
|
5285 |
-
|
5286 |
-
|
5287 |
-
|
5288 |
-
|
5289 |
-
|
5290 |
-
|
5291 |
-
|
5292 |
-
#: modules/
|
5293 |
-
|
5294 |
-
|
5295 |
-
|
5296 |
-
|
5297 |
-
|
5298 |
-
|
5299 |
-
|
5300 |
-
|
5301 |
-
|
5302 |
-
|
5303 |
-
|
5304 |
-
|
5305 |
-
|
5306 |
-
|
5307 |
-
|
5308 |
-
|
5309 |
-
|
5310 |
-
|
5311 |
-
|
5312 |
-
|
5313 |
-
|
5314 |
-
|
5315 |
-
|
5316 |
-
|
5317 |
-
|
5318 |
-
|
5319 |
-
|
5320 |
-
|
5321 |
-
|
5322 |
-
|
5323 |
-
|
5324 |
-
|
5325 |
-
|
5326 |
-
|
5327 |
-
|
5328 |
-
|
5329 |
-
|
5330 |
-
|
5331 |
-
|
5332 |
-
#: modules/
|
5333 |
-
msgid "
|
5334 |
-
msgstr ""
|
5335 |
-
|
5336 |
-
#: modules/
|
5337 |
-
|
5338 |
-
|
5339 |
-
|
5340 |
-
|
5341 |
-
|
5342 |
-
|
5343 |
-
|
5344 |
-
#: modules/
|
5345 |
-
msgid "
|
5346 |
-
msgstr ""
|
5347 |
-
|
5348 |
-
#: modules/
|
5349 |
-
|
5350 |
-
|
5351 |
-
|
5352 |
-
|
5353 |
-
|
5354 |
-
|
5355 |
-
|
5356 |
-
#: modules/
|
5357 |
-
msgid ""
|
5358 |
-
|
5359 |
-
|
5360 |
-
|
5361 |
-
|
5362 |
-
|
5363 |
-
|
5364 |
-
#: modules/
|
5365 |
-
msgid "
|
5366 |
-
msgstr ""
|
5367 |
-
|
5368 |
-
#: modules/
|
5369 |
-
|
5370 |
-
|
5371 |
-
|
5372 |
-
|
5373 |
-
|
5374 |
-
|
5375 |
-
|
5376 |
-
|
5377 |
-
|
5378 |
-
|
5379 |
-
|
5380 |
-
|
5381 |
-
|
5382 |
-
|
5383 |
-
|
5384 |
-
|
5385 |
-
|
5386 |
-
msgstr ""
|
5387 |
-
|
5388 |
-
#: modules/
|
5389 |
-
msgid ""
|
5390 |
-
|
5391 |
-
|
5392 |
-
|
5393 |
-
|
5394 |
-
|
5395 |
-
|
5396 |
-
|
5397 |
-
|
5398 |
-
|
5399 |
-
|
5400 |
-
|
5401 |
-
|
5402 |
-
|
5403 |
-
|
5404 |
-
|
5405 |
-
|
5406 |
-
|
5407 |
-
|
5408 |
-
|
5409 |
-
|
5410 |
-
|
5411 |
-
|
5412 |
-
|
5413 |
-
|
5414 |
-
|
5415 |
-
|
5416 |
-
|
5417 |
-
|
5418 |
-
|
5419 |
-
|
5420 |
-
|
5421 |
-
|
5422 |
-
|
5423 |
-
|
5424 |
-
#: modules/
|
5425 |
-
msgid "
|
5426 |
-
msgstr ""
|
5427 |
-
|
5428 |
-
#: modules/
|
5429 |
-
msgid "
|
5430 |
-
msgstr ""
|
5431 |
-
|
5432 |
-
#: modules/
|
5433 |
-
msgid "
|
5434 |
-
msgstr ""
|
5435 |
-
|
5436 |
-
#: modules/
|
5437 |
-
msgid "
|
5438 |
-
msgstr ""
|
5439 |
-
|
5440 |
-
#: modules/
|
5441 |
-
|
5442 |
-
|
5443 |
-
|
5444 |
-
|
5445 |
-
|
5446 |
-
|
5447 |
-
|
5448 |
-
|
5449 |
-
|
5450 |
-
|
5451 |
-
|
5452 |
-
|
5453 |
-
|
5454 |
-
|
5455 |
-
|
5456 |
-
|
5457 |
-
|
5458 |
-
|
5459 |
-
|
5460 |
-
|
5461 |
-
|
5462 |
-
|
5463 |
-
|
5464 |
-
|
5465 |
-
|
5466 |
-
|
5467 |
-
|
5468 |
-
|
5469 |
-
|
5470 |
-
|
5471 |
-
|
5472 |
-
|
5473 |
-
|
5474 |
-
|
5475 |
-
|
5476 |
-
|
5477 |
-
"
|
5478 |
-
|
5479 |
-
|
5480 |
-
|
5481 |
-
|
5482 |
-
|
5483 |
-
|
5484 |
-
|
5485 |
-
"
|
5486 |
-
|
5487 |
-
|
5488 |
-
|
5489 |
-
|
5490 |
-
|
5491 |
-
|
5492 |
-
|
5493 |
-
|
5494 |
-
|
5495 |
-
|
5496 |
-
|
5497 |
-
|
5498 |
-
|
5499 |
-
|
5500 |
-
|
5501 |
-
|
5502 |
-
|
5503 |
-
|
5504 |
-
|
5505 |
-
msgstr ""
|
5506 |
-
|
5507 |
-
#: modules/
|
5508 |
-
msgid "
|
5509 |
-
msgstr ""
|
5510 |
-
|
5511 |
-
#: modules/
|
5512 |
-
msgid "
|
5513 |
-
msgstr ""
|
5514 |
-
|
5515 |
-
#: modules/
|
5516 |
-
msgid "
|
5517 |
-
|
5518 |
-
|
5519 |
-
|
5520 |
-
|
5521 |
-
|
5522 |
-
|
5523 |
-
|
5524 |
-
|
5525 |
-
|
5526 |
-
|
5527 |
-
|
5528 |
-
|
5529 |
-
|
5530 |
-
|
5531 |
-
|
5532 |
-
|
5533 |
-
|
5534 |
-
|
5535 |
-
|
5536 |
-
|
5537 |
-
|
5538 |
-
|
5539 |
-
|
5540 |
-
|
5541 |
-
|
5542 |
-
|
5543 |
-
|
5544 |
-
|
5545 |
-
|
5546 |
-
|
5547 |
-
|
5548 |
-
|
5549 |
-
#: modules/
|
5550 |
-
msgid "
|
5551 |
-
msgstr ""
|
5552 |
-
|
5553 |
-
#: modules/
|
5554 |
-
msgid "
|
5555 |
-
msgstr ""
|
5556 |
-
|
5557 |
-
#: modules/user-
|
5558 |
-
msgid "
|
5559 |
-
|
5560 |
-
|
5561 |
-
|
5562 |
-
|
5563 |
-
|
5564 |
-
|
5565 |
-
|
5566 |
-
|
5567 |
-
|
5568 |
-
|
5569 |
-
|
5570 |
-
|
5571 |
-
|
5572 |
-
|
5573 |
-
|
5574 |
-
|
5575 |
-
|
5576 |
-
|
5577 |
-
|
5578 |
-
|
5579 |
-
msgstr ""
|
5580 |
-
|
5581 |
-
#: modules/user-
|
5582 |
-
msgid "
|
5583 |
-
msgstr ""
|
5584 |
-
|
5585 |
-
#: modules/user-
|
5586 |
-
msgid "
|
5587 |
-
msgstr ""
|
5588 |
-
|
5589 |
-
#: modules/user-
|
5590 |
-
|
5591 |
-
|
5592 |
-
|
5593 |
-
|
5594 |
-
|
5595 |
-
|
5596 |
-
|
5597 |
-
|
5598 |
-
|
5599 |
-
|
5600 |
-
|
5601 |
-
|
5602 |
-
|
5603 |
-
|
5604 |
-
|
5605 |
-
|
5606 |
-
|
5607 |
-
|
5608 |
-
|
5609 |
-
|
5610 |
-
|
5611 |
-
|
5612 |
-
|
5613 |
-
|
5614 |
-
|
5615 |
-
|
5616 |
-
|
5617 |
-
|
5618 |
-
|
5619 |
-
|
5620 |
-
#: modules/
|
5621 |
-
msgid "
|
5622 |
-
msgstr ""
|
5623 |
-
|
5624 |
-
#: modules/
|
5625 |
-
msgid "
|
5626 |
-
msgstr ""
|
5627 |
-
|
5628 |
-
#: modules/
|
5629 |
-
msgid "
|
5630 |
-
msgstr ""
|
5631 |
-
|
5632 |
-
#: modules/
|
5633 |
-
|
5634 |
-
|
5635 |
-
|
5636 |
-
|
5637 |
-
|
5638 |
-
|
5639 |
-
|
5640 |
-
|
5641 |
-
|
5642 |
-
|
5643 |
-
|
5644 |
-
|
5645 |
-
|
5646 |
-
|
5647 |
-
|
5648 |
-
|
5649 |
-
|
5650 |
-
|
5651 |
-
|
5652 |
-
|
5653 |
-
|
5654 |
-
|
5655 |
-
|
5656 |
-
|
5657 |
-
|
5658 |
-
|
5659 |
-
|
5660 |
-
|
5661 |
-
|
5662 |
-
|
5663 |
-
|
5664 |
-
|
5665 |
-
|
5666 |
-
|
5667 |
-
|
5668 |
-
|
5669 |
-
|
5670 |
-
|
5671 |
-
|
5672 |
-
|
5673 |
-
|
5674 |
-
|
5675 |
-
|
5676 |
-
|
5677 |
-
|
5678 |
-
|
5679 |
-
|
5680 |
-
|
5681 |
-
|
5682 |
-
|
5683 |
-
|
5684 |
-
|
5685 |
-
|
5686 |
-
|
5687 |
-
|
5688 |
-
#: modules/
|
5689 |
-
msgid "
|
5690 |
-
msgstr ""
|
5691 |
-
|
5692 |
-
#: modules/
|
5693 |
-
|
5694 |
-
|
5695 |
-
|
5696 |
-
|
5697 |
-
|
5698 |
-
|
5699 |
-
|
5700 |
-
|
5701 |
-
|
5702 |
-
|
5703 |
-
|
5704 |
-
#: modules/
|
5705 |
-
|
5706 |
-
|
5707 |
-
|
5708 |
-
|
5709 |
-
|
5710 |
-
|
5711 |
-
|
5712 |
-
|
5713 |
-
|
5714 |
-
|
5715 |
-
|
5716 |
-
|
5717 |
-
|
5718 |
-
|
5719 |
-
|
5720 |
-
|
5721 |
-
|
5722 |
-
|
5723 |
-
|
5724 |
-
|
5725 |
-
|
5726 |
-
|
5727 |
-
|
5728 |
-
|
5729 |
-
|
5730 |
-
|
5731 |
-
|
5732 |
-
|
5733 |
-
|
5734 |
-
|
5735 |
-
|
5736 |
-
|
5737 |
-
|
5738 |
-
|
5739 |
-
|
5740 |
-
|
5741 |
-
|
5742 |
-
|
5743 |
-
|
5744 |
-
|
5745 |
-
|
5746 |
-
|
5747 |
-
|
5748 |
-
|
5749 |
-
|
5750 |
-
|
5751 |
-
|
5752 |
-
|
5753 |
-
|
5754 |
-
|
5755 |
-
|
5756 |
-
|
5757 |
-
|
5758 |
-
|
5759 |
-
|
5760 |
-
|
5761 |
-
|
5762 |
-
|
5763 |
-
|
5764 |
-
|
5765 |
-
|
5766 |
-
|
5767 |
-
|
5768 |
-
|
5769 |
-
|
5770 |
-
|
5771 |
-
|
5772 |
-
|
5773 |
-
|
5774 |
-
|
5775 |
-
|
5776 |
-
|
5777 |
-
|
5778 |
-
|
5779 |
-
|
5780 |
-
|
5781 |
-
|
5782 |
-
|
5783 |
-
|
5784 |
-
|
5785 |
-
|
5786 |
-
|
5787 |
-
|
5788 |
-
|
5789 |
-
"
|
5790 |
-
"
|
5791 |
-
|
5792 |
-
|
5793 |
-
|
5794 |
-
|
5795 |
-
|
5796 |
-
|
5797 |
-
|
5798 |
-
|
5799 |
-
|
5800 |
-
|
5801 |
-
|
5802 |
-
|
5803 |
-
|
5804 |
-
|
5805 |
-
|
5806 |
-
|
5807 |
-
|
5808 |
-
|
5809 |
-
|
5810 |
-
|
5811 |
-
|
5812 |
-
|
5813 |
-
|
5814 |
-
|
5815 |
-
|
5816 |
-
|
5817 |
-
|
5818 |
-
|
5819 |
-
|
5820 |
-
|
5821 |
-
|
5822 |
-
|
5823 |
-
|
5824 |
-
|
5825 |
-
|
5826 |
-
|
5827 |
-
|
5828 |
-
|
5829 |
-
"
|
5830 |
-
msgstr ""
|
5831 |
-
|
5832 |
-
#: modules/user-listing/userlisting.php:
|
5833 |
-
msgid "
|
5834 |
-
msgstr ""
|
5835 |
-
|
5836 |
-
#: modules/user-listing/userlisting.php:
|
5837 |
-
msgid ""
|
5838 |
-
|
5839 |
-
|
5840 |
-
|
5841 |
-
|
5842 |
-
|
5843 |
-
|
5844 |
-
|
5845 |
-
|
5846 |
-
|
5847 |
-
|
5848 |
-
|
5849 |
-
"
|
5850 |
-
msgstr ""
|
5851 |
-
|
5852 |
-
#: modules/user-listing/userlisting.php:
|
5853 |
-
msgid "
|
5854 |
-
msgstr ""
|
5855 |
-
|
5856 |
-
#: modules/user-listing/userlisting.php:
|
5857 |
-
msgid ""
|
5858 |
-
|
5859 |
-
|
5860 |
-
|
5861 |
-
|
5862 |
-
|
5863 |
-
|
5864 |
-
|
5865 |
-
|
5866 |
-
|
5867 |
-
|
5868 |
-
|
5869 |
-
|
5870 |
-
|
5871 |
-
|
5872 |
-
|
5873 |
-
|
5874 |
-
|
5875 |
-
|
5876 |
-
|
5877 |
-
|
5878 |
-
|
5879 |
-
|
5880 |
-
|
5881 |
-
|
5882 |
-
|
5883 |
-
|
5884 |
-
|
5885 |
-
|
5886 |
-
|
5887 |
-
|
5888 |
-
|
5889 |
-
|
5890 |
-
|
5891 |
-
|
5892 |
-
|
5893 |
-
|
5894 |
-
|
5895 |
-
|
5896 |
-
|
5897 |
-
|
5898 |
-
|
5899 |
-
|
5900 |
-
|
5901 |
-
|
5902 |
-
|
5903 |
-
|
5904 |
-
|
5905 |
-
|
5906 |
-
|
5907 |
-
|
5908 |
-
|
5909 |
-
|
5910 |
-
|
5911 |
-
|
5912 |
-
|
5913 |
-
|
5914 |
-
|
5915 |
-
|
5916 |
-
|
5917 |
-
|
5918 |
-
|
5919 |
-
|
5920 |
-
|
5921 |
-
|
5922 |
-
|
5923 |
-
|
5924 |
-
|
5925 |
-
|
5926 |
-
|
5927 |
-
|
5928 |
-
|
5929 |
-
|
5930 |
-
|
5931 |
-
|
5932 |
-
|
5933 |
-
|
5934 |
-
|
5935 |
-
|
5936 |
-
|
5937 |
-
|
5938 |
-
|
5939 |
-
|
5940 |
-
|
5941 |
-
|
5942 |
-
|
5943 |
-
|
5944 |
-
|
5945 |
-
|
5946 |
-
|
5947 |
-
|
5948 |
-
|
5949 |
-
|
5950 |
-
|
5951 |
-
|
5952 |
-
|
5953 |
-
|
5954 |
-
|
5955 |
-
|
5956 |
-
|
5957 |
-
|
5958 |
-
|
5959 |
-
|
5960 |
-
|
5961 |
-
|
5962 |
-
|
5963 |
-
|
5964 |
-
|
5965 |
-
|
5966 |
-
|
5967 |
-
|
5968 |
-
|
5969 |
-
|
5970 |
-
|
5971 |
-
|
5972 |
-
|
5973 |
-
|
5974 |
-
|
5975 |
-
|
5976 |
-
|
5977 |
-
|
5978 |
-
|
5979 |
-
|
5980 |
-
|
5981 |
-
|
5982 |
-
|
5983 |
-
|
5984 |
-
|
5985 |
-
|
5986 |
-
|
5987 |
-
|
5988 |
-
|
5989 |
-
|
5990 |
-
|
5991 |
-
|
5992 |
-
|
5993 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2018 Profile Builder
|
2 |
+
# This file is distributed under the same license as the Profile Builder package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Profile Builder\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"X-Poedit-Basepath: ..\n"
|
10 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
11 |
+
"X-Poedit-SearchPath-0: .\n"
|
12 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
13 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
+
|
16 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:24, ../pb-add-on-bbpress/bbpress-page.php:24
|
17 |
+
msgid "bbPress"
|
18 |
+
msgstr ""
|
19 |
+
|
20 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:69
|
21 |
+
msgid "bbPress Integration"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:78
|
25 |
+
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, woosync-page.php:80, woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:91
|
29 |
+
msgid "None"
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:105
|
33 |
+
msgid "Select which Single User-listing managed via Profile Builder should replace the default bbPress user profile."
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:113
|
37 |
+
msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, woosync-page.php:116
|
41 |
+
msgid "Default Edit Profile"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:141
|
45 |
+
msgid "Select Profile Builder Edit Profile form to replace the bbPress Profile Edit tab."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: ../pb-add-on-bbpress/index.php:163, ../pb-add-on-bbpress/index.php:169, ../pb-add-on-bbpress/index.php:184, ../pb-add-on-bbpress/index.php:234
|
49 |
+
msgid "Topics Started"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: ../pb-add-on-bbpress/index.php:164, ../pb-add-on-bbpress/index.php:170, ../pb-add-on-bbpress/index.php:185, ../pb-add-on-bbpress/index.php:236
|
53 |
+
msgid "Replies Created"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: ../pb-add-on-bbpress/index.php:168, ../pb-add-on-bbpress/index.php:183
|
57 |
+
msgid "Forum Role"
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: ../pb-add-on-bbpress/index.php:308
|
61 |
+
msgid "bbPress needs to be installed and activated for Profile Builder - bbPress Integration Add-on to work as expected!"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:26, ../pb-add-on-buddypress/buddypress-page.php:26
|
65 |
+
msgid "BuddyPress"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:45
|
69 |
+
msgid "BuddyPress Integration"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:50
|
73 |
+
msgid "Import BuddyPress Fields to Profile Builder"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:53
|
77 |
+
msgid "Import BuddyPress Fields"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:55
|
81 |
+
msgid "Create fields in Profile Builder that match the existing ones in BuddyPress and import all the user field entries.<br><a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/add-ons/buddypress/#Import_BuddyPress_Fields_to_Profile_Builder\">Learn more about importing BuddyPress fields</a>."
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:61
|
85 |
+
msgid "Registration form:"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:65, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:82
|
89 |
+
msgid "Default Registration"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:87
|
93 |
+
msgid "Select Profile Builder Registration form to replace the BuddyPress Registration form.<br>Registration emails will now be managed in Profile Builder -> User Email Customizer"
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:94
|
97 |
+
msgid "Edit Profile form:"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:120
|
101 |
+
msgid "Select Profile Builder Edit Profile form to replace the BuddyPress Profile Edit tab."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:131
|
105 |
+
msgid "User Listing template:"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:157
|
109 |
+
msgid "Select which User Listing template managed by Profile Builder should replace the default BuddyPress user profile view."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:164
|
113 |
+
msgid "Use All-User Listing?"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:170
|
117 |
+
msgid "Enable PB User Listing on BuddyPress Members page"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:172
|
121 |
+
msgid "Check this if All User-listing managed via Profile Builder should replace the default BuddyPress Members page.<br>The template used will be the one selected above."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: ../pb-add-on-buddypress/field-visibility.php:20
|
125 |
+
msgid "Allow members to override"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: ../pb-add-on-buddypress/field-visibility.php:20
|
129 |
+
msgid "Enforce field visibility"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: ../pb-add-on-buddypress/field-visibility.php:22
|
133 |
+
msgid "BuddyPress Default Field Visibility"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: ../pb-add-on-buddypress/field-visibility.php:23
|
137 |
+
msgid "BuddyPress Allow Custom Visibility"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: ../pb-add-on-buddypress/field-visibility.php:105, ../pb-add-on-buddypress/field-visibility.php:119
|
141 |
+
msgid "This field can be seen by: "
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: ../pb-add-on-buddypress/field-visibility.php:105
|
145 |
+
msgid "Change"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: ../pb-add-on-buddypress/field-visibility.php:110
|
149 |
+
msgid "Who can see this field?"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: ../pb-add-on-buddypress/field-visibility.php:115
|
153 |
+
msgid "Close"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: ../pb-add-on-buddypress/field-visibility.php:216, ../pb-add-on-custom-profile-menus/index.php:266
|
157 |
+
msgid "Everyone"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: ../pb-add-on-buddypress/field-visibility.php:220
|
161 |
+
msgid "Only Me"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: ../pb-add-on-buddypress/field-visibility.php:224, ../pb-add-on-buddypress/mustache-vars.php:335
|
165 |
+
msgid "All Members"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: ../pb-add-on-buddypress/field-visibility.php:228, ../pb-add-on-buddypress/mustache-vars.php:339
|
169 |
+
msgid "My Friends"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:34
|
173 |
+
msgid "<h2>Import BuddyPress Fields to Profile Builder</h2>"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:40
|
177 |
+
msgid "BuddyPress is not installed and active. Import aborted!"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:44
|
181 |
+
msgid "Importing BuddyPress Field Settings to Profile Builder...<br><br>"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:51, ../pb-add-on-buddypress/import-bp-fields.php:328
|
185 |
+
msgid "If the page does not redirect automatically"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:51, ../pb-add-on-buddypress/import-bp-fields.php:328
|
189 |
+
msgid "click here"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:53
|
193 |
+
msgid "Importing User entries BuddyPress Fields to Profile Builder...<br><br>"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:55
|
197 |
+
msgid "Done."
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: ../pb-add-on-buddypress/import-bp-fields.php:55
|
201 |
+
msgid "Back to BuddyPress Settings page"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: ../pb-add-on-buddypress/index.php:225
|
205 |
+
msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar."
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: ../pb-add-on-buddypress/index.php:382
|
209 |
+
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: ../pb-add-on-buddypress/index.php:511, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, ../profile-builder-2.0/admin/manage-fields.php:211
|
213 |
+
msgid "Name"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: ../pb-add-on-buddypress/index.php:514
|
217 |
+
msgid "Username:"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: ../pb-add-on-buddypress/index.php:518
|
221 |
+
msgid "First Name:"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: ../pb-add-on-buddypress/index.php:522
|
225 |
+
msgid "Last Name:"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: ../pb-add-on-buddypress/index.php:526
|
229 |
+
msgid "Nickname:"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: ../pb-add-on-buddypress/index.php:530
|
233 |
+
msgid "Display name:"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: ../pb-add-on-buddypress/index.php:534, ../profile-builder-2.0/admin/manage-fields.php:217
|
237 |
+
msgid "Contact Info"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: ../pb-add-on-buddypress/index.php:537
|
241 |
+
msgid "Website:"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: ../pb-add-on-buddypress/index.php:541, ../profile-builder-2.0/admin/manage-fields.php:228
|
245 |
+
msgid "About Yourself"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: ../pb-add-on-buddypress/index.php:544
|
249 |
+
msgid "Biographical Info:"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:15, ../pb-add-on-buddypress/mustache-vars.php:53
|
253 |
+
msgid "BuddyPress Avatar"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:16, ../pb-add-on-buddypress/mustache-vars.php:54
|
257 |
+
msgid "BuddyPress Cover Photo"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:17, ../pb-add-on-buddypress/mustache-vars.php:35, ../pb-add-on-buddypress/mustache-vars.php:262
|
261 |
+
msgid "BuddyPress Last Active"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:21
|
265 |
+
msgid "BuddyPress Add Friend Button"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:24
|
269 |
+
msgid "BuddyPress Latest Update"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:140
|
273 |
+
msgid "Never active"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:245
|
277 |
+
msgid "Last Active"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:278
|
281 |
+
msgid "My BuddyPress Friends Tab"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:379
|
285 |
+
msgid "BuddyPress field visibility syntax"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:399
|
289 |
+
msgid "Are you sure you want to reset this template?"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:399
|
293 |
+
msgid "Reset to Default BuddyPress User Listing Templates"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:400
|
297 |
+
msgid "<b>Note:</b> This action is not reversible. All modifications to this template will be lost!"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: ../pb-add-on-buddypress/mustache-vars.php:414
|
301 |
+
msgid "Reset template"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: ../pb-add-on-custom-css-classes-on-fields/index.php:50
|
305 |
+
msgid "CSS Class"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: ../pb-add-on-custom-css-classes-on-fields/index.php:51
|
309 |
+
msgid "Add a class to a field. Should not contain dots(.) and for multiple classes separate by space."
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: ../pb-add-on-custom-profile-menus/index.php:175
|
313 |
+
msgid "Login Label"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: ../pb-add-on-custom-profile-menus/index.php:180, ../pb-add-on-custom-profile-menus/index.php:302, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:13, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:60, ../profile-builder-2.0/admin/basic-info.php:36, ../profile-builder-2.0/features/login-widget/login-widget.php:59
|
317 |
+
msgid "Login"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: ../pb-add-on-custom-profile-menus/index.php:183
|
321 |
+
msgid "Logout Label"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: ../pb-add-on-custom-profile-menus/index.php:188, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16, ../profile-builder-2.0/front-end/class-formbuilder.php:169
|
325 |
+
msgid "Logout"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: ../pb-add-on-custom-profile-menus/index.php:194
|
329 |
+
msgid "Form page URL"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: ../pb-add-on-custom-profile-menus/index.php:197
|
333 |
+
msgid "Login page URL"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: ../pb-add-on-custom-profile-menus/index.php:200
|
337 |
+
msgid "Login Form page URL"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: ../pb-add-on-custom-profile-menus/index.php:203
|
341 |
+
msgid "Edit Profile Form page URL"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: ../pb-add-on-custom-profile-menus/index.php:206
|
345 |
+
msgid "Register Form page URL"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: ../pb-add-on-custom-profile-menus/index.php:245
|
349 |
+
msgid "Display Mode"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: ../pb-add-on-custom-profile-menus/index.php:252, ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:67
|
353 |
+
msgid "Logged In Users"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: ../pb-add-on-custom-profile-menus/index.php:259
|
357 |
+
msgid "Logged Out Users"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: ../pb-add-on-custom-profile-menus/index.php:273
|
361 |
+
msgid "Restrict menu item to a minimum role"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: ../pb-add-on-custom-profile-menus/index.php:274
|
365 |
+
msgid "Works only if Display Mode: Logged In Users is selected"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: ../pb-add-on-custom-profile-menus/index.php:305, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:67, ../profile-builder-2.0/admin/basic-info.php:44
|
369 |
+
msgid "Edit Profile"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, ../profile-builder-2.0/front-end/class-formbuilder.php:420, ../profile-builder-2.0/front-end/login.php:263
|
373 |
+
msgid "Register"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: ../pb-add-on-custom-profile-menus/index.php:314
|
377 |
+
msgid "iFrame Title"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: ../pb-add-on-custom-profile-menus/index.php:324
|
381 |
+
msgid "iFrame Size"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: ../pb-add-on-custom-profile-menus/index.php:327
|
385 |
+
msgid "Height (px)"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: ../pb-add-on-custom-profile-menus/index.php:334
|
389 |
+
msgid "Width (px)"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: ../pb-add-on-email-confirmation-field/index.php:83
|
393 |
+
msgid "The email confirmation does not match your email address."
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: ../pb-add-on-field-visibility/index.php:202, ../profile-builder-2.0/admin/admin-bar.php:58
|
397 |
+
msgid "Visibility"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: ../pb-add-on-field-visibility/index.php:202
|
401 |
+
msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: ../pb-add-on-field-visibility/index.php:203
|
405 |
+
msgid "User Role Visibility"
|
406 |
+
msgstr ""
|
407 |
+
|
408 |
+
#: ../pb-add-on-field-visibility/index.php:203
|
409 |
+
msgid "Select which user roles see this field"
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: ../pb-add-on-field-visibility/index.php:204
|
413 |
+
msgid "Location Visibility"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: ../pb-add-on-field-visibility/index.php:204
|
417 |
+
msgid "Select the locations you wish the field to appear"
|
418 |
+
msgstr ""
|
419 |
+
|
420 |
+
#: ../pb-add-on-field-visibility/index.php:222
|
421 |
+
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
422 |
+
msgstr ""
|
423 |
+
|
424 |
+
#: ../pb-add-on-field-visibility/index.php:222, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1204, ../profile-builder-2.0/features/functions.php:743, ../profile-builder-2.0/features/functions.php:750, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:108, ../profile-builder-2.0/features/roles-editor/roles-editor.php:866, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225, ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
425 |
+
msgid "Edit"
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: ../pb-add-on-field-visibility/index.php:222, ../profile-builder-2.0/admin/manage-fields.php:1204, ../profile-builder-2.0/features/functions.php:736, ../profile-builder-2.0/features/functions.php:750, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:113, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218, ../profile-builder-2.0/features/roles-editor/roles-editor.php:179, ../profile-builder-2.0/features/roles-editor/roles-editor.php:884, ../profile-builder-2.0/features/roles-editor/roles-editor.php:893, ../profile-builder-2.0/features/roles-editor/roles-editor.php:904, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225
|
429 |
+
msgid "Delete"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: ../pb-add-on-field-visibility/index.php:243
|
433 |
+
msgid "This field is visible only for administrators."
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: ../pb-add-on-field-visibility/index.php:246
|
437 |
+
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: ../pb-add-on-field-visibility/index.php:269
|
441 |
+
msgid "This field is visible only for the following user roles: %1$s"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: ../pb-add-on-field-visibility/index.php:315
|
445 |
+
msgid "This field is visible only in the following locations: %1$s"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: ../pb-add-on-field-visibility/index.php:457
|
449 |
+
msgid "Get file"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: ../pb-add-on-field-visibility/index.php:586
|
453 |
+
msgid "You do not have the capabilities necessary to edit this field."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: ../pb-add-on-import-export/pbie-export.php:102
|
457 |
+
msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: ../pb-add-on-import-export/pbie-export.php:104, ../pb-add-on-import-export/pbie.php:55, ../pb-add-on-labels-edit/pble.php:318
|
461 |
+
msgid "Export"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: ../pb-add-on-import-export/pbie-import.php:32
|
465 |
+
msgid "Import Profile Builder options from a .json file. This allows you to easily import the configuration from another site. "
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: ../pb-add-on-import-export/pbie-import.php:38, ../pb-add-on-import-export/pbie.php:54, ../pb-add-on-labels-edit/pble.php:308
|
469 |
+
msgid "Import"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: ../pb-add-on-import-export/pbie-import.php:38
|
473 |
+
msgid "This will overwrite your old PB settings! Are you sure you want to continue?"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: ../pb-add-on-import-export/pbie.php:40, ../pb-add-on-import-export/pbie.php:40, ../pb-add-on-import-export/pbie.php:74
|
477 |
+
msgid "Import and Export"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: ../pb-add-on-labels-edit/pble.php:135
|
481 |
+
msgid " labels scanned."
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: ../pb-add-on-labels-edit/pble.php:184, ../pb-add-on-labels-edit/pble.php:185
|
485 |
+
msgid "Labels Edit"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: ../pb-add-on-labels-edit/pble.php:203
|
489 |
+
msgid "Label to Edit"
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: ../pb-add-on-labels-edit/pble.php:204
|
493 |
+
msgid "New Label"
|
494 |
+
msgstr ""
|
495 |
+
|
496 |
+
#: ../pb-add-on-labels-edit/pble.php:210
|
497 |
+
msgid "Edit Labels"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: ../pb-add-on-labels-edit/pble.php:226
|
501 |
+
msgid "Rescan Lables"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: ../pb-add-on-labels-edit/pble.php:251
|
505 |
+
msgid "Informations"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: ../pb-add-on-labels-edit/pble.php:285
|
509 |
+
msgid "Import and Export Labels"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: ../pb-add-on-labels-edit/pble.php:299
|
513 |
+
msgid "Import Labels from a .json file."
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: ../pb-add-on-labels-edit/pble.php:301
|
517 |
+
msgid "Easily import the labels from another site."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: ../pb-add-on-labels-edit/pble.php:308
|
521 |
+
msgid ""
|
522 |
+
"This will overwrite all your old edited labels!\n"
|
523 |
+
"Are you sure you want to continue?"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: ../pb-add-on-labels-edit/pble.php:313
|
527 |
+
msgid "Export Labels as a .json file."
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: ../pb-add-on-labels-edit/pble.php:315
|
531 |
+
msgid "Easily import the labels into another site."
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: ../pb-add-on-labels-edit/pble.php:343
|
535 |
+
msgid "You must select a label to edit!"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:140
|
539 |
+
msgid "Labels"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: ../pb-add-on-labels-edit/pble.php:354, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
543 |
+
msgid "Delete all"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: ../pb-add-on-labels-edit/pble.php:406
|
547 |
+
msgid "No labels edited, nothing to export!"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: ../pb-add-on-mailpoet-integration/index.php:127
|
551 |
+
msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: ../pb-add-on-maximum-character-length/index.php:47
|
555 |
+
msgid "Maximum Character Length"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: ../pb-add-on-maximum-character-length/index.php:47
|
559 |
+
msgid "Specify the maximum number of characters a user can type in this field"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: ../pb-add-on-maximum-character-length/index.php:68
|
563 |
+
msgid ""
|
564 |
+
"The entered character number is not numerical\n"
|
565 |
+
""
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: ../pb-add-on-multi-step-forms/index.php:102, ../pb-add-on-multi-step-forms/index.php:534
|
569 |
+
msgid "Step"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: ../pb-add-on-multi-step-forms/index.php:103
|
573 |
+
msgid "Title for Tab"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: ../pb-add-on-multi-step-forms/index.php:104
|
577 |
+
msgid "Add Break Points to edit tabs title."
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: ../pb-add-on-multi-step-forms/index.php:105
|
581 |
+
msgid "Publish the form to edit tabs title."
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: ../pb-add-on-multi-step-forms/index.php:106, ../pb-add-on-multi-step-forms/index.php:224
|
585 |
+
msgid "Publish the form before adding Break Points!"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: ../pb-add-on-multi-step-forms/index.php:107
|
589 |
+
msgid "Request in process, please wait a few seconds before a new one!"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: ../pb-add-on-multi-step-forms/index.php:152
|
593 |
+
msgid "Multi-Step Forms"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: ../pb-add-on-multi-step-forms/index.php:196
|
597 |
+
msgid "Multi-Step Forms options updated."
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: ../pb-add-on-multi-step-forms/index.php:201
|
601 |
+
msgid "Enable on:"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: ../pb-add-on-multi-step-forms/index.php:202
|
605 |
+
msgid "PB Default Register Form"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: ../pb-add-on-multi-step-forms/index.php:203
|
609 |
+
msgid "PB Default Edit Profile Form"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: ../pb-add-on-multi-step-forms/index.php:204
|
613 |
+
msgid "To enable it on Multiple Registration and Edit-Profile Forms you must add Break Points in each form page."
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: ../pb-add-on-multi-step-forms/index.php:205, ../pb-add-on-multi-step-forms/index.php:230
|
617 |
+
msgid "Pagination and Tabs:"
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: ../pb-add-on-multi-step-forms/index.php:206, ../pb-add-on-multi-step-forms/index.php:231
|
621 |
+
msgid "Enable Pagination"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: ../pb-add-on-multi-step-forms/index.php:207, ../pb-add-on-multi-step-forms/index.php:232
|
625 |
+
msgid "Enable Tabs"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: ../pb-add-on-multi-step-forms/index.php:207, ../pb-add-on-multi-step-forms/index.php:232
|
629 |
+
msgid "Edit Tabs Title"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: ../pb-add-on-multi-step-forms/index.php:209
|
633 |
+
msgid "Update Multi-Step"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: ../pb-add-on-multi-step-forms/index.php:229
|
637 |
+
msgid "To enable MSF you must add Break Points."
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: ../pb-add-on-multi-step-forms/index.php:463
|
641 |
+
msgid "Next"
|
642 |
+
msgstr ""
|
643 |
+
|
644 |
+
#: ../pb-add-on-multi-step-forms/index.php:464
|
645 |
+
msgid "Previous"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:142, ../pb-add-on-placeholder-labels/pbpl.php:146
|
649 |
+
msgid "Placeholder Labels"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:168
|
653 |
+
msgid "Replace labels with placeholders:"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:323, ../profile-builder-2.0/admin/general-settings.php:42, ../profile-builder-2.0/admin/general-settings.php:55, ../profile-builder-2.0/admin/general-settings.php:104, ../profile-builder-2.0/admin/general-settings.php:151, ../profile-builder-2.0/admin/general-settings.php:170, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2320
|
657 |
+
msgid "Yes"
|
658 |
+
msgstr ""
|
659 |
+
|
660 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:324, ../profile-builder-2.0/admin/general-settings.php:56, ../profile-builder-2.0/admin/general-settings.php:105, ../profile-builder-2.0/admin/general-settings.php:150, ../profile-builder-2.0/admin/general-settings.php:169, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
661 |
+
msgid "No"
|
662 |
+
msgstr ""
|
663 |
+
|
664 |
+
#: ../pb-add-on-social-connect/index.php:184, ../pb-add-on-social-connect/index.php:185, ../pb-add-on-social-connect/index.php:291, ../pb-add-on-social-connect/index.php:295
|
665 |
+
msgid "Social Connect"
|
666 |
+
msgstr ""
|
667 |
+
|
668 |
+
#: ../pb-add-on-social-connect/index.php:204
|
669 |
+
msgid "Display on the Following Forms"
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: ../pb-add-on-social-connect/index.php:205
|
673 |
+
msgid "Disable Registration on"
|
674 |
+
msgstr ""
|
675 |
+
|
676 |
+
#: ../pb-add-on-social-connect/index.php:205
|
677 |
+
msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
|
678 |
+
msgstr ""
|
679 |
+
|
680 |
+
#: ../pb-add-on-social-connect/index.php:206
|
681 |
+
msgid "Facebook Login"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: ../pb-add-on-social-connect/index.php:207
|
685 |
+
msgid "Facebook App ID"
|
686 |
+
msgstr ""
|
687 |
+
|
688 |
+
#: ../pb-add-on-social-connect/index.php:208
|
689 |
+
msgid "Google+ Login"
|
690 |
+
msgstr ""
|
691 |
+
|
692 |
+
#: ../pb-add-on-social-connect/index.php:209
|
693 |
+
msgid "Google+ Client ID"
|
694 |
+
msgstr ""
|
695 |
+
|
696 |
+
#: ../pb-add-on-social-connect/index.php:210
|
697 |
+
msgid "Twitter Login"
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: ../pb-add-on-social-connect/index.php:211
|
701 |
+
msgid "Twitter API Key"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: ../pb-add-on-social-connect/index.php:212
|
705 |
+
msgid "Twitter API Secret"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: ../pb-add-on-social-connect/index.php:213
|
709 |
+
msgid "LinkedIn Login"
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: ../pb-add-on-social-connect/index.php:214
|
713 |
+
msgid "LinkedIn Client ID"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: ../pb-add-on-social-connect/index.php:215
|
717 |
+
msgid "Buttons Order"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: ../pb-add-on-social-connect/index.php:215
|
721 |
+
msgid "Drag and drop the dots to re-order."
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: ../pb-add-on-social-connect/index.php:216
|
725 |
+
msgid "Buttons Re-Order"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: ../pb-add-on-social-connect/index.php:216
|
729 |
+
msgid "Save the buttons order from the buttons order checkboxes"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: ../pb-add-on-social-connect/index.php:217
|
733 |
+
msgid "Buttons Location"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: ../pb-add-on-social-connect/index.php:217
|
737 |
+
msgid "Display social buttons before or after the forms fields."
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: ../pb-add-on-social-connect/index.php:218
|
741 |
+
msgid "Buttons Style"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: ../pb-add-on-social-connect/index.php:219
|
745 |
+
msgid "Heading Before Buttons (Login/Register)"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: ../pb-add-on-social-connect/index.php:219, ../pb-add-on-social-connect/index.php:220
|
749 |
+
msgid "Empty field will remove the heading."
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: ../pb-add-on-social-connect/index.php:220
|
753 |
+
msgid "Heading Before Buttons (Edit Profile)"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: ../pb-add-on-social-connect/index.php:221
|
757 |
+
msgid "Facebook Button Text (Login/Register)"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: ../pb-add-on-social-connect/index.php:222
|
761 |
+
msgid "Google+ Button Text (Login/Register)"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: ../pb-add-on-social-connect/index.php:223
|
765 |
+
msgid "Twitter Button Text (Login/Register)"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: ../pb-add-on-social-connect/index.php:224
|
769 |
+
msgid "LinkedIn Button Text (Login/Register)"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: ../pb-add-on-social-connect/index.php:225
|
773 |
+
msgid "Facebook Button Text (Edit Profile)"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: ../pb-add-on-social-connect/index.php:226
|
777 |
+
msgid "Google+ Button Text (Edit Profile)"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: ../pb-add-on-social-connect/index.php:227
|
781 |
+
msgid "Twitter Button Text (Edit Profile)"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: ../pb-add-on-social-connect/index.php:228
|
785 |
+
msgid "LinkedIn Button Text (Edit Profile)"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: ../pb-add-on-social-connect/index.php:229
|
789 |
+
msgid "Unlink Accounts (Edit Profile)"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: ../pb-add-on-social-connect/index.php:229
|
793 |
+
msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: ../pb-add-on-social-connect/index.php:230
|
797 |
+
msgid "Default Social Connect CSS in the Front-end"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: ../pb-add-on-social-connect/index.php:236
|
801 |
+
msgid "Settings"
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
#: ../pb-add-on-social-connect/index.php:250
|
805 |
+
msgid "Help"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: ../pb-add-on-social-connect/index.php:320
|
809 |
+
msgid "Display Social Connect buttons:"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: ../pb-add-on-social-connect/index.php:369
|
813 |
+
msgid "You have successfully unlinked %% from your account."
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: ../pb-add-on-social-connect/index.php:380
|
817 |
+
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: ../pb-add-on-social-connect/index.php:381
|
821 |
+
msgid "Please enter your website account password"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: ../pb-add-on-social-connect/index.php:382
|
825 |
+
msgid "Please enter a new email"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: ../pb-add-on-social-connect/index.php:383
|
829 |
+
msgid "You have successfully linked your account to %%."
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: ../pb-add-on-social-connect/index.php:384
|
833 |
+
msgid "Something went wrong. Please try again later!"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: ../pb-add-on-social-connect/index.php:385
|
837 |
+
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: ../pb-add-on-social-connect/index.php:386
|
841 |
+
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: ../pb-add-on-social-connect/index.php:387
|
845 |
+
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: ../pb-add-on-social-connect/index.php:388, ../profile-builder-2.0/features/admin-approval/admin-approval.php:180
|
849 |
+
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: ../pb-add-on-social-connect/index.php:389
|
853 |
+
msgid "You will be redirected in 5 seconds. If not, click %%."
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: ../pb-add-on-social-connect/index.php:390, ../profile-builder-2.0/features/functions.php:1028
|
857 |
+
msgid "here"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: ../pb-add-on-social-connect/index.php:391
|
861 |
+
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: ../pb-add-on-social-connect/index.php:392
|
865 |
+
msgid "Wrong password!"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: ../pb-add-on-social-connect/index.php:393
|
869 |
+
msgid "Please enter a valid email!"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: ../pb-add-on-social-connect/index.php:394
|
873 |
+
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: ../pb-add-on-social-connect/index.php:400
|
877 |
+
msgid "Please enter your Facebook email"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: ../pb-add-on-social-connect/index.php:401
|
881 |
+
msgid "Please enter your Facebook email!"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: ../pb-add-on-social-connect/index.php:413
|
885 |
+
msgid "Waiting for Twitter..."
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: ../pb-add-on-social-connect/index.php:414
|
889 |
+
msgid "Please enter your Twitter email"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: ../pb-add-on-social-connect/index.php:415
|
893 |
+
msgid "Please enter your Twitter email!"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: ../pb-add-on-social-connect/index.php:688
|
897 |
+
msgid "Profile Builder not active!"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: ../pb-add-on-social-connect/index.php:825, ../profile-builder-2.0/admin/admin-functions.php:37, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:35
|
901 |
+
msgid "General Settings"
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: ../pb-add-on-social-connect/index.php:829
|
905 |
+
msgid "Application Settings"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: ../pb-add-on-social-connect/index.php:833
|
909 |
+
msgid "Appearance Settings"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: ../pb-add-on-social-connect/index.php:897
|
913 |
+
msgid "Unlink"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: ../pb-add-on-social-connect/index.php:904
|
917 |
+
msgid "Your account is linked with:"
|
918 |
+
msgstr ""
|
919 |
+
|
920 |
+
#: billing-fields.php:5, shipping-fields.php:5
|
921 |
+
msgid "Country"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: billing-fields.php:6, shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:213
|
925 |
+
msgid "First Name"
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: billing-fields.php:7, shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:214
|
929 |
+
msgid "Last Name"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: billing-fields.php:8, shipping-fields.php:8
|
933 |
+
msgid "Company Name"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: billing-fields.php:9, shipping-fields.php:9
|
937 |
+
msgid "Address"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: billing-fields.php:11, shipping-fields.php:11
|
941 |
+
msgid "Town / City"
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: billing-fields.php:12, shipping-fields.php:12
|
945 |
+
msgid "State / County"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: billing-fields.php:13, shipping-fields.php:13
|
949 |
+
msgid "Postcode / Zip"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: billing-fields.php:14
|
953 |
+
msgid "Email Address"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: billing-fields.php:15
|
957 |
+
msgid "Phone"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: billing-fields.php:278
|
961 |
+
msgid "Ship to a different address?"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: index.php:160, index.php:729
|
965 |
+
msgid "Billing Address"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: index.php:160
|
969 |
+
msgid "Displays customer billing fields in front-end. "
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: index.php:164, index.php:730
|
973 |
+
msgid "Shipping Address"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: index.php:164
|
977 |
+
msgid "Displays customer shipping fields in front-end. "
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: index.php:239, index.php:258, index.php:355, index.php:358, index.php:785
|
981 |
+
msgid "Address line 2"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: index.php:247
|
985 |
+
msgid "Billing Fields"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: index.php:247
|
989 |
+
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: index.php:248
|
993 |
+
msgid "Billing Fields Order"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: index.php:248
|
997 |
+
msgid "Save the billing fields order from the billing fields checkboxes"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: index.php:249
|
1001 |
+
msgid "Billing Fields Name"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: index.php:249
|
1005 |
+
msgid "Save the billing fields names"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: index.php:266
|
1009 |
+
msgid "Shipping Fields"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: index.php:266
|
1013 |
+
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: index.php:267
|
1017 |
+
msgid "Shipping Fields Order"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: index.php:267
|
1021 |
+
msgid "Save the shipping fields order from the billing fields checkboxes"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: index.php:268
|
1025 |
+
msgid "Shipping Fields Name"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: index.php:268
|
1029 |
+
msgid "Save the shipping fields names"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: index.php:296
|
1033 |
+
msgid "Field Name"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: index.php:297, ../profile-builder-2.0/admin/manage-fields.php:171
|
1037 |
+
msgid "Required"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: index.php:360
|
1041 |
+
msgid "Click to edit "
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
|
1045 |
+
msgid "The email you entered is not a valid email address."
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: index.php:642
|
1049 |
+
msgid "No options available. Please select one country."
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: index.php:661, index.php:686
|
1053 |
+
msgid "Billing "
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: index.php:669, index.php:693
|
1057 |
+
msgid "Shipping "
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: index.php:846
|
1061 |
+
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: woo-checkout-field-support.php:63
|
1065 |
+
msgid "Display on WooCommerce Checkout"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: woo-checkout-field-support.php:63
|
1069 |
+
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: woosync-page.php:23, woosync-page.php:23, woosync-page.php:70
|
1073 |
+
msgid "WooCommerce Sync"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: woosync-page.php:76
|
1077 |
+
msgid "Choose Register form to display on My Account page:"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: woosync-page.php:81
|
1081 |
+
msgid "Default Register"
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: woosync-page.php:104
|
1085 |
+
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: woosync-page.php:111
|
1089 |
+
msgid "Choose Edit Profile form to display on My Account page:"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: woosync-page.php:139
|
1093 |
+
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: ../profile-builder-2.0/index.php:36
|
1097 |
+
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:11, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:11, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:46
|
1101 |
+
msgid "Campaign Monitor"
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:38
|
1105 |
+
msgid "Campaign Monitor Integration"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:58, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:332
|
1109 |
+
msgid "Save"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:85
|
1113 |
+
msgid "Campaign Monitor API key:"
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:92, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:124
|
1117 |
+
msgid "The API key was successfully validated!"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:96
|
1121 |
+
msgid "Either the API key is not valid or we could not connect to Campaign Monitor to validate it!"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:100
|
1125 |
+
msgid "Enter your Campaign Monitor account API key."
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:126
|
1129 |
+
msgid "Select client:"
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:136
|
1133 |
+
msgid "Loading clients..."
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:148
|
1137 |
+
msgid "Select a client that you would like to edit."
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:186
|
1141 |
+
msgid "No clients found"
|
1142 |
+
msgstr ""
|
1143 |
+
|
1144 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:188
|
1145 |
+
msgid "Select a client..."
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:266, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:274
|
1149 |
+
msgid "Client List"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:267, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:275, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:61, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:68
|
1153 |
+
msgid "Fields Count"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:348
|
1157 |
+
msgid "Retrieves changes made in your Campaign Monitor account and matches it with the saved data from the add-on. This does not save the new data, so you will have to manually save."
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:348
|
1161 |
+
msgid "Synchronize client data"
|
1162 |
+
msgstr ""
|
1163 |
+
|
1164 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:349
|
1165 |
+
msgid "Change client"
|
1166 |
+
msgstr ""
|
1167 |
+
|
1168 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:413
|
1169 |
+
msgid "No lists were found."
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:437
|
1173 |
+
msgid "Click to edit"
|
1174 |
+
msgstr ""
|
1175 |
+
|
1176 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, ../profile-builder-2.0/features/functions.php:729, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:395
|
1177 |
+
msgid "Cancel"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:523, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:203
|
1181 |
+
msgid "Field Associations:"
|
1182 |
+
msgstr ""
|
1183 |
+
|
1184 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:580
|
1185 |
+
msgid "Associate each Campaign Monitor field with a Profile Builder field"
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:602, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:358
|
1189 |
+
msgid "Extra Options:"
|
1190 |
+
msgstr ""
|
1191 |
+
|
1192 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:610, ../pb-add-on-campaign-monitor-integration/admin/widget.php:236
|
1193 |
+
msgid "Resubscribe"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:613, ../pb-add-on-campaign-monitor-integration/admin/widget.php:239
|
1197 |
+
msgid "If the subscriber is in an inactive state or has previously been unsubscribed and you check the Resubscribe option, they will be re-added to the list. Therefore, this method should be used with caution and only where suitable."
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:657
|
1201 |
+
msgid "Campaign Monitor API key is empty"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:659
|
1205 |
+
msgid "Campaign Monitor API key is invalid"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:42, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:60, ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:63
|
1209 |
+
msgid "Campaign Monitor List"
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:42
|
1213 |
+
msgid "Please enter a Campaign Monitor API key <a href=\"%s\">here</a>."
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:46
|
1217 |
+
msgid "Something went wrong. Either the API key is invalid or we could not connect to Campaign Monitor to validate the key."
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:52, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:52, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:38
|
1221 |
+
msgid "Select a list..."
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:60
|
1225 |
+
msgid "Select in which Campaign Monitor list you wish to add a new subscriber"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:61, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49
|
1229 |
+
msgid "Hide on Edit Profile"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:61, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:62, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:49
|
1233 |
+
msgid "If checked this field will not be displayed on edit profile forms"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:63
|
1237 |
+
msgid "We couldn't find any lists in your Campaign Monitor settings."
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/manage-fields.php:83
|
1241 |
+
msgid ""
|
1242 |
+
"Please select at least one Campaign Monitor list \n"
|
1243 |
+
""
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:14
|
1247 |
+
msgid "Profile Builder Campaign Monitor Widget"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:15
|
1251 |
+
msgid "Adds a basic subscribe form so that your users can subscribe to your Campaign Monitor lists"
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:68
|
1255 |
+
msgid "Something went wrong. Either the Campaign Monitor API key is missing or it is invalid."
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:93, ../pb-add-on-mailchimp-integration/admin/widget.php:89, ../pb-add-on-mailchimp-integration/admin/widget.php:91
|
1259 |
+
msgid "%s"
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:157, ../pb-add-on-mailchimp-integration/admin/widget.php:147
|
1263 |
+
msgid "Submit"
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:182, ../pb-add-on-mailchimp-integration/admin/widget.php:174
|
1267 |
+
msgid "Subscribe to Newsletter"
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:191, ../pb-add-on-mailchimp-integration/admin/widget.php:182
|
1271 |
+
msgid "Title"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:197, ../pb-add-on-mailchimp-integration/admin/widget.php:187
|
1275 |
+
msgid "Select the list your new subscriber will be added to"
|
1276 |
+
msgstr ""
|
1277 |
+
|
1278 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:202
|
1279 |
+
msgid "Select list..."
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:208
|
1283 |
+
msgid "No lists found"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:213, ../pb-add-on-mailchimp-integration/admin/widget.php:205
|
1287 |
+
msgid "Select which fields to show"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:219, ../pb-add-on-campaign-monitor-integration/admin/widget.php:221
|
1291 |
+
msgid "E-mail address"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:225
|
1295 |
+
msgid "fullname"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:231
|
1299 |
+
msgid "Extra options"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/widget.php:245
|
1303 |
+
msgid "The Campaign Monitor API key is either missing or is invalid."
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: ../pb-add-on-import-export/inc/class-pbie-import.php:64, ../pb-add-on-labels-edit/inc/class-pble-import.php:34
|
1307 |
+
msgid "Uploaded file is not valid json!"
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: ../pb-add-on-import-export/inc/class-pbie-import.php:82, ../pb-add-on-labels-edit/inc/class-pble-import.php:48
|
1311 |
+
msgid "Import successfully!"
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: ../pb-add-on-import-export/inc/class-pbie-import.php:88, ../pb-add-on-labels-edit/inc/class-pble-import.php:54
|
1315 |
+
msgid "Please select a .json file to import!"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: ../pb-add-on-labels-edit/inc/class-pble-import.php:48
|
1319 |
+
msgid "Page will refresh in 3 seconds..."
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:11, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:11
|
1323 |
+
msgid "MailChimp"
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:35
|
1327 |
+
msgid "MailChimp Integration"
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:44
|
1331 |
+
msgid "Before you can make any changes you will need to add a MailChimp API key."
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:60, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:67, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:42, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:64
|
1335 |
+
msgid "MailChimp List"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:82
|
1339 |
+
msgid "We couldn't find any lists"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:119
|
1343 |
+
msgid "MailChimp API Key:"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:126
|
1347 |
+
msgid "Either the API key is not valid or we could not connect to MailChimp to validate it!"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:129
|
1351 |
+
msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:540, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:533
|
1355 |
+
msgid "Edit this item"
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:212
|
1359 |
+
msgid "This field is required in MailChimp"
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:262
|
1363 |
+
msgid "Associate each MailChimp field with a Profile Builder field"
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:296
|
1367 |
+
msgid "Group Associations:"
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:335
|
1371 |
+
msgid "Associate each MailChimp group with a Profile Builder field"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:367, ../pb-add-on-mailchimp-integration/admin/widget.php:218
|
1375 |
+
msgid "Double Opt-In"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:368
|
1379 |
+
msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscription"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:383, ../pb-add-on-mailchimp-integration/admin/widget.php:230
|
1383 |
+
msgid "Send Welcome E-mail"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:384, ../pb-add-on-mailchimp-integration/admin/widget.php:231
|
1387 |
+
msgid "If checked will send an e-mail to welcome the user to the subscribtion area"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:429
|
1391 |
+
msgid "MailChimp API key is empty"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:431
|
1395 |
+
msgid "MailChimp API key is invalid"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:438, ../pb-add-on-mailchimp-integration/admin/manage-fields.php:46
|
1399 |
+
msgid "Something went wrong. Either the API key is invalid or we could not connect to MailChimp to validate the key."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:42
|
1403 |
+
msgid "Please enter a MailChimp API key <a href=\"%s\">here</a>."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:60
|
1407 |
+
msgid "Select in which MailChimp list you wish to add a new subscriber"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:61, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:48
|
1411 |
+
msgid "Checked by Default"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:61, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:48
|
1415 |
+
msgid "If checked the Subscribe checkbox in the front-end will be checked by default on register forms"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:64
|
1419 |
+
msgid "We couldn't find any lists in your MailChimp settings."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: ../pb-add-on-mailchimp-integration/admin/manage-fields.php:84
|
1423 |
+
msgid ""
|
1424 |
+
"Please select at least one MailChimp list \n"
|
1425 |
+
""
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:14
|
1429 |
+
msgid "Profile Builder MailChimp Widget"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:15
|
1433 |
+
msgid "Adds a basic subscribe form so that your users can subscribe to your MailChimp lists"
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:68, ../pb-add-on-mailchimp-integration/admin/widget.php:239
|
1437 |
+
msgid "Something went wrong. Either the MailChimp API key is missing or it is invalid."
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:190
|
1441 |
+
msgid "Select..."
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:214
|
1445 |
+
msgid "Extra Options"
|
1446 |
+
msgstr ""
|
1447 |
+
|
1448 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:219
|
1449 |
+
msgid "If you select double opt-in, the user will receive an e-mail to confirm the subscribtion"
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: ../pb-add-on-mailchimp-integration/admin/widget.php:372
|
1453 |
+
msgid "Please select a list first"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:43
|
1457 |
+
msgid "No list was found."
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:47, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51, ../pb-add-on-mailpoet-integration/admin/manage-fields.php:53
|
1461 |
+
msgid "MailPoet List"
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:47
|
1465 |
+
msgid "Select in which MailPoet list you wish to add a new subscriber"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:51
|
1469 |
+
msgid "We couldn't find any lists in your MailPoet settings."
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:53
|
1473 |
+
msgid "Please install and activate MailPoet plugin."
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: ../pb-add-on-mailpoet-integration/admin/manage-fields.php:73
|
1477 |
+
msgid ""
|
1478 |
+
"Please select at least one MailPoet list \n"
|
1479 |
+
""
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: ../pb-add-on-select2/admin/manage-fields.php:52
|
1483 |
+
msgid "Maximum Selections"
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: ../pb-add-on-select2/admin/manage-fields.php:52
|
1487 |
+
msgid "Select2 multi-value select boxes can set restrictions regarding the maximum number of options selected."
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: ../pb-add-on-select2/admin/manage-fields.php:53
|
1491 |
+
msgid "User Inputted Options"
|
1492 |
+
msgstr ""
|
1493 |
+
|
1494 |
+
#: ../pb-add-on-select2/admin/manage-fields.php:53
|
1495 |
+
msgid "Check this to allow users to create their own options beside the pre-existing ones."
|
1496 |
+
msgstr ""
|
1497 |
+
|
1498 |
+
#: ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:85, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:74, ../profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45, ../profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45, ../profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40, ../profile-builder-2.0/front-end/extra-fields/input/input.php:30, ../profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34, ../profile-builder-2.0/front-end/extra-fields/map/map.php:51, ../profile-builder-2.0/front-end/extra-fields/number/number.php:30, ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:39, ../profile-builder-2.0/front-end/extra-fields/radio/radio.php:44, ../profile-builder-2.0/front-end/extra-fields/select/select.php:51, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:58, ../profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46, ../profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49, ../profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30, ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:70, ../profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
1499 |
+
msgid "required"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: ../pb-add-on-social-connect/facebook/facebook.php:32
|
1503 |
+
msgid "Link with Facebook"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: ../pb-add-on-social-connect/facebook/facebook.php:38
|
1507 |
+
msgid "Sign in with Facebook"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: ../pb-add-on-social-connect/google/google.php:39
|
1511 |
+
msgid "Link with Google+"
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: ../pb-add-on-social-connect/google/google.php:45
|
1515 |
+
msgid "Sign in with Google+"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: ../pb-add-on-social-connect/linkedin/linkedin.php:40
|
1519 |
+
msgid "Link with LinkedIn"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: ../pb-add-on-social-connect/linkedin/linkedin.php:46
|
1523 |
+
msgid "Sign in with LinkedIn"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:52
|
1527 |
+
msgid "Connection with twitter Failed"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:57
|
1531 |
+
msgid "Error Receiving Request Token"
|
1532 |
+
msgstr ""
|
1533 |
+
|
1534 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:108
|
1535 |
+
msgid "Something went wrong. Please try again later."
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:141
|
1539 |
+
msgid "Link with Twitter"
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:147
|
1543 |
+
msgid "Sign in with Twitter"
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: ../profile-builder-2.0/admin/add-ons.php:10, ../profile-builder-2.0/admin/add-ons.php:10, ../profile-builder-2.0/admin/add-ons.php:193
|
1547 |
+
msgid "Add-Ons"
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: ../profile-builder-2.0/admin/add-ons.php:41
|
1551 |
+
msgid "Recommended Plugins"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: ../profile-builder-2.0/admin/add-ons.php:72, ../profile-builder-2.0/admin/add-ons.php:143, ../profile-builder-2.0/admin/pms-cross-promotion.php:102
|
1555 |
+
msgid "Free"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: ../profile-builder-2.0/admin/add-ons.php:74
|
1559 |
+
msgid "Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders."
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: ../profile-builder-2.0/admin/add-ons.php:84, ../profile-builder-2.0/admin/add-ons.php:155, ../profile-builder-2.0/admin/add-ons.php:195, ../profile-builder-2.0/admin/add-ons.php:284, ../profile-builder-2.0/admin/pms-cross-promotion.php:78, ../profile-builder-2.0/admin/pms-cross-promotion.php:114, ../profile-builder-2.0/admin/pms-cross-promotion.php:193
|
1563 |
+
msgid "Activate"
|
1564 |
+
msgstr ""
|
1565 |
+
|
1566 |
+
#: ../profile-builder-2.0/admin/add-ons.php:88, ../profile-builder-2.0/admin/add-ons.php:159, ../profile-builder-2.0/admin/add-ons.php:207, ../profile-builder-2.0/admin/add-ons.php:288, ../profile-builder-2.0/admin/pms-cross-promotion.php:90, ../profile-builder-2.0/admin/pms-cross-promotion.php:118, ../profile-builder-2.0/admin/pms-cross-promotion.php:197
|
1567 |
+
msgid "Deactivate"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: ../profile-builder-2.0/admin/add-ons.php:93, ../profile-builder-2.0/admin/add-ons.php:164, ../profile-builder-2.0/admin/pms-cross-promotion.php:88, ../profile-builder-2.0/admin/pms-cross-promotion.php:123, ../profile-builder-2.0/admin/pms-cross-promotion.php:202
|
1571 |
+
msgid "Plugin is <strong>inactive</strong>"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: ../profile-builder-2.0/admin/add-ons.php:95, ../profile-builder-2.0/admin/add-ons.php:166, ../profile-builder-2.0/admin/pms-cross-promotion.php:87, ../profile-builder-2.0/admin/pms-cross-promotion.php:125, ../profile-builder-2.0/admin/pms-cross-promotion.php:204
|
1575 |
+
msgid "Plugin is <strong>active</strong>"
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: ../profile-builder-2.0/admin/add-ons.php:101, ../profile-builder-2.0/admin/add-ons.php:172, ../profile-builder-2.0/admin/pms-cross-promotion.php:137, ../profile-builder-2.0/admin/pms-cross-promotion.php:216
|
1579 |
+
msgid "Install Now"
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: ../profile-builder-2.0/admin/add-ons.php:104, ../profile-builder-2.0/admin/add-ons.php:175, ../profile-builder-2.0/admin/add-ons.php:308, ../profile-builder-2.0/admin/pms-cross-promotion.php:141, ../profile-builder-2.0/admin/pms-cross-promotion.php:220
|
1583 |
+
msgid "Compatible with your version of Profile Builder."
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: ../profile-builder-2.0/admin/add-ons.php:109, ../profile-builder-2.0/admin/add-ons.php:180, ../profile-builder-2.0/admin/pms-cross-promotion.php:146
|
1587 |
+
msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1588 |
+
msgstr ""
|
1589 |
+
|
1590 |
+
#: ../profile-builder-2.0/admin/add-ons.php:145
|
1591 |
+
msgid "Accept user payments, create subscription plans and restrict content on your membership site."
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: ../profile-builder-2.0/admin/add-ons.php:197, ../profile-builder-2.0/admin/pms-cross-promotion.php:80
|
1595 |
+
msgid "Downloading and installing..."
|
1596 |
+
msgstr ""
|
1597 |
+
|
1598 |
+
#: ../profile-builder-2.0/admin/add-ons.php:198, ../profile-builder-2.0/admin/pms-cross-promotion.php:81
|
1599 |
+
msgid "Installation complete"
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: ../profile-builder-2.0/admin/add-ons.php:200
|
1603 |
+
msgid "Add-On is Active"
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: ../profile-builder-2.0/admin/add-ons.php:201
|
1607 |
+
msgid "Add-On has been activated"
|
1608 |
+
msgstr ""
|
1609 |
+
|
1610 |
+
#: ../profile-builder-2.0/admin/add-ons.php:202, ../profile-builder-2.0/admin/pms-cross-promotion.php:85
|
1611 |
+
msgid "Retry Install"
|
1612 |
+
msgstr ""
|
1613 |
+
|
1614 |
+
#: ../profile-builder-2.0/admin/add-ons.php:204, ../profile-builder-2.0/admin/add-ons.php:295
|
1615 |
+
msgid "Add-On is <strong>active</strong>"
|
1616 |
+
msgstr ""
|
1617 |
+
|
1618 |
+
#: ../profile-builder-2.0/admin/add-ons.php:205, ../profile-builder-2.0/admin/add-ons.php:293
|
1619 |
+
msgid "Add-On is <strong>inactive</strong>"
|
1620 |
+
msgstr ""
|
1621 |
+
|
1622 |
+
#: ../profile-builder-2.0/admin/add-ons.php:208
|
1623 |
+
msgid "Add-On has been deactivated."
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: ../profile-builder-2.0/admin/add-ons.php:216
|
1627 |
+
msgid "Something went wrong, we could not connect to the server. Please try again later."
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#: ../profile-builder-2.0/admin/add-ons.php:260
|
1631 |
+
msgid "Available in Hobbyist and Pro Versions"
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: ../profile-builder-2.0/admin/add-ons.php:262
|
1635 |
+
msgid "Available in All Versions"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: ../profile-builder-2.0/admin/add-ons.php:303
|
1639 |
+
msgid "Learn More"
|
1640 |
+
msgstr ""
|
1641 |
+
|
1642 |
+
#: ../profile-builder-2.0/admin/add-ons.php:303, ../profile-builder-2.0/admin/pms-cross-promotion.php:134, ../profile-builder-2.0/admin/pms-cross-promotion.php:213
|
1643 |
+
msgid "Download Now"
|
1644 |
+
msgstr ""
|
1645 |
+
|
1646 |
+
#: ../profile-builder-2.0/admin/add-ons.php:317
|
1647 |
+
msgid "Upgrade Profile Builder"
|
1648 |
+
msgstr ""
|
1649 |
+
|
1650 |
+
#: ../profile-builder-2.0/admin/add-ons.php:318
|
1651 |
+
msgid "Not compatible with Profile Builder"
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: ../profile-builder-2.0/admin/add-ons.php:325, ../profile-builder-2.0/front-end/class-formbuilder.php:423
|
1655 |
+
msgid "Update"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: ../profile-builder-2.0/admin/add-ons.php:326
|
1659 |
+
msgid "Not compatible with your version of Profile Builder."
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: ../profile-builder-2.0/admin/add-ons.php:327
|
1663 |
+
msgid "Minimum required Profile Builder version:"
|
1664 |
+
msgstr ""
|
1665 |
+
|
1666 |
+
#: ../profile-builder-2.0/admin/add-ons.php:332
|
1667 |
+
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1668 |
+
msgstr ""
|
1669 |
+
|
1670 |
+
#: ../profile-builder-2.0/admin/admin-bar.php:10
|
1671 |
+
msgid "Show/Hide the Admin Bar on the Front-End"
|
1672 |
+
msgstr ""
|
1673 |
+
|
1674 |
+
#: ../profile-builder-2.0/admin/admin-bar.php:10, ../profile-builder-2.0/admin/admin-bar.php:47
|
1675 |
+
msgid "Admin Bar Settings"
|
1676 |
+
msgstr ""
|
1677 |
+
|
1678 |
+
#: ../profile-builder-2.0/admin/admin-bar.php:48
|
1679 |
+
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
1680 |
+
msgstr ""
|
1681 |
+
|
1682 |
+
#: ../profile-builder-2.0/admin/admin-bar.php:57
|
1683 |
+
msgid "User-Role"
|
1684 |
+
msgstr ""
|
1685 |
+
|
1686 |
+
#: ../profile-builder-2.0/admin/admin-bar.php:73, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
1687 |
+
msgid "Default"
|
1688 |
+
msgstr ""
|
1689 |
+
|
1690 |
+
#: ../profile-builder-2.0/admin/admin-bar.php:74
|
1691 |
+
msgid "Show"
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: ../profile-builder-2.0/admin/admin-bar.php:75, ../profile-builder-2.0/modules/user-listing/userlisting.php:1606
|
1695 |
+
msgid "Hide"
|
1696 |
+
msgstr ""
|
1697 |
+
|
1698 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:37
|
1699 |
+
msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:41
|
1703 |
+
msgid "Display name publicly as - only appears on the Edit Profile page!"
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:44
|
1707 |
+
msgid "Blog Details - only appears on the Registration page!"
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:132
|
1711 |
+
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
1712 |
+
msgstr ""
|
1713 |
+
|
1714 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:229
|
1715 |
+
msgid "Very weak"
|
1716 |
+
msgstr ""
|
1717 |
+
|
1718 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:230, ../profile-builder-2.0/features/functions.php:563, ../profile-builder-2.0/features/functions.php:587
|
1719 |
+
msgid "Weak"
|
1720 |
+
msgstr ""
|
1721 |
+
|
1722 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:231, ../profile-builder-2.0/features/functions.php:563, ../profile-builder-2.0/features/functions.php:587
|
1723 |
+
msgid "Medium"
|
1724 |
+
msgstr ""
|
1725 |
+
|
1726 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:137, ../profile-builder-2.0/admin/general-settings.php:232, ../profile-builder-2.0/features/functions.php:563, ../profile-builder-2.0/features/functions.php:587
|
1727 |
+
msgid "Strong"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:148
|
1731 |
+
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:187
|
1735 |
+
msgid "Add Field"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:189, ../profile-builder-2.0/features/content-restriction/content-restriction.php:117, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
|
1739 |
+
msgid "Save Settings"
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:200
|
1743 |
+
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
1744 |
+
msgstr ""
|
1745 |
+
|
1746 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:220
|
1747 |
+
msgid "Extend WooCommerce checkout page with support for all the Profile Builder Pro custom field types, conditional logic and repeater fields with the latest <strong>WooSync addon</strong> for Profile Builder."
|
1748 |
+
msgstr ""
|
1749 |
+
|
1750 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:222
|
1751 |
+
msgid "Check it out!"
|
1752 |
+
msgstr ""
|
1753 |
+
|
1754 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:223
|
1755 |
+
msgid "Dismiss this notice."
|
1756 |
+
msgstr ""
|
1757 |
+
|
1758 |
+
#: ../profile-builder-2.0/admin/basic-info.php:10, ../profile-builder-2.0/admin/basic-info.php:10
|
1759 |
+
msgid "Basic Information"
|
1760 |
+
msgstr ""
|
1761 |
+
|
1762 |
+
#: ../profile-builder-2.0/admin/basic-info.php:30
|
1763 |
+
msgid "<strong>Profile Builder </strong> %s"
|
1764 |
+
msgstr ""
|
1765 |
+
|
1766 |
+
#: ../profile-builder-2.0/admin/basic-info.php:31
|
1767 |
+
msgid "The best way to add front-end registration, edit profile and login forms."
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: ../profile-builder-2.0/admin/basic-info.php:33
|
1771 |
+
msgid "For Modern User Interaction"
|
1772 |
+
msgstr ""
|
1773 |
+
|
1774 |
+
#: ../profile-builder-2.0/admin/basic-info.php:37
|
1775 |
+
msgid "Friction-less login using %s shortcode or a widget."
|
1776 |
+
msgstr ""
|
1777 |
+
|
1778 |
+
#: ../profile-builder-2.0/admin/basic-info.php:40
|
1779 |
+
msgid "Registration"
|
1780 |
+
msgstr ""
|
1781 |
+
|
1782 |
+
#: ../profile-builder-2.0/admin/basic-info.php:41
|
1783 |
+
msgid "Beautiful registration forms fully customizable using the %s shortcode."
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: ../profile-builder-2.0/admin/basic-info.php:45
|
1787 |
+
msgid "Straight forward edit profile forms using %s shortcode."
|
1788 |
+
msgstr ""
|
1789 |
+
|
1790 |
+
#: ../profile-builder-2.0/admin/basic-info.php:51
|
1791 |
+
msgid "Extra Features"
|
1792 |
+
msgstr ""
|
1793 |
+
|
1794 |
+
#: ../profile-builder-2.0/admin/basic-info.php:52
|
1795 |
+
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
1796 |
+
msgstr ""
|
1797 |
+
|
1798 |
+
#: ../profile-builder-2.0/admin/basic-info.php:53
|
1799 |
+
msgid "Enable extra features"
|
1800 |
+
msgstr ""
|
1801 |
+
|
1802 |
+
#: ../profile-builder-2.0/admin/basic-info.php:57
|
1803 |
+
msgid "Recover Password"
|
1804 |
+
msgstr ""
|
1805 |
+
|
1806 |
+
#: ../profile-builder-2.0/admin/basic-info.php:58
|
1807 |
+
msgid "Allow users to recover their password in the front-end using the %s."
|
1808 |
+
msgstr ""
|
1809 |
+
|
1810 |
+
#: ../profile-builder-2.0/admin/basic-info.php:61
|
1811 |
+
msgid "Admin Approval (*)"
|
1812 |
+
msgstr ""
|
1813 |
+
|
1814 |
+
#: ../profile-builder-2.0/admin/basic-info.php:62
|
1815 |
+
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
1816 |
+
msgstr ""
|
1817 |
+
|
1818 |
+
#: ../profile-builder-2.0/admin/basic-info.php:65
|
1819 |
+
msgid "Email Confirmation"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: ../profile-builder-2.0/admin/basic-info.php:66
|
1823 |
+
msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
|
1824 |
+
msgstr ""
|
1825 |
+
|
1826 |
+
#: ../profile-builder-2.0/admin/basic-info.php:69, ../profile-builder-2.0/features/content-restriction/content-restriction.php:17, ../profile-builder-2.0/features/content-restriction/content-restriction.php:17, ../profile-builder-2.0/features/content-restriction/content-restriction.php:44
|
1827 |
+
msgid "Content Restriction"
|
1828 |
+
msgstr ""
|
1829 |
+
|
1830 |
+
#: ../profile-builder-2.0/admin/basic-info.php:70
|
1831 |
+
msgid "Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status."
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: ../profile-builder-2.0/admin/basic-info.php:73
|
1835 |
+
msgid "Minimum Password Length and Strength Meter"
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
#: ../profile-builder-2.0/admin/basic-info.php:74
|
1839 |
+
msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
|
1840 |
+
msgstr ""
|
1841 |
+
|
1842 |
+
#: ../profile-builder-2.0/admin/basic-info.php:77
|
1843 |
+
msgid "Login with Email or Username"
|
1844 |
+
msgstr ""
|
1845 |
+
|
1846 |
+
#: ../profile-builder-2.0/admin/basic-info.php:78
|
1847 |
+
msgid "Allow users to log in with their email or username when accessing your site."
|
1848 |
+
msgstr ""
|
1849 |
+
|
1850 |
+
#: ../profile-builder-2.0/admin/basic-info.php:81, ../profile-builder-2.0/features/roles-editor/roles-editor.php:244, ../profile-builder-2.0/features/roles-editor/roles-editor.php:245, ../profile-builder-2.0/features/roles-editor/roles-editor.php:250, ../profile-builder-2.0/features/roles-editor/roles-editor.php:257
|
1851 |
+
msgid "Roles Editor"
|
1852 |
+
msgstr ""
|
1853 |
+
|
1854 |
+
#: ../profile-builder-2.0/admin/basic-info.php:82
|
1855 |
+
msgid "Add, remove, clone and edit roles and also capabilities for these roles."
|
1856 |
+
msgstr ""
|
1857 |
+
|
1858 |
+
#: ../profile-builder-2.0/admin/basic-info.php:95
|
1859 |
+
msgid "Customize Your Forms The Way You Want (*)"
|
1860 |
+
msgstr ""
|
1861 |
+
|
1862 |
+
#: ../profile-builder-2.0/admin/basic-info.php:96
|
1863 |
+
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
1864 |
+
msgstr ""
|
1865 |
+
|
1866 |
+
#: ../profile-builder-2.0/admin/basic-info.php:98
|
1867 |
+
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
1868 |
+
msgstr ""
|
1869 |
+
|
1870 |
+
#: ../profile-builder-2.0/admin/basic-info.php:100
|
1871 |
+
msgid "Get started with extra fields"
|
1872 |
+
msgstr ""
|
1873 |
+
|
1874 |
+
#: ../profile-builder-2.0/admin/basic-info.php:103
|
1875 |
+
msgid "Avatar Upload"
|
1876 |
+
msgstr ""
|
1877 |
+
|
1878 |
+
#: ../profile-builder-2.0/admin/basic-info.php:104
|
1879 |
+
msgid "Generic Uploads"
|
1880 |
+
msgstr ""
|
1881 |
+
|
1882 |
+
#: ../profile-builder-2.0/admin/basic-info.php:105
|
1883 |
+
msgid "Agree To Terms Checkbox"
|
1884 |
+
msgstr ""
|
1885 |
+
|
1886 |
+
#: ../profile-builder-2.0/admin/basic-info.php:106
|
1887 |
+
msgid "Datepicker"
|
1888 |
+
msgstr ""
|
1889 |
+
|
1890 |
+
#: ../profile-builder-2.0/admin/basic-info.php:107
|
1891 |
+
msgid "Timepicker"
|
1892 |
+
msgstr ""
|
1893 |
+
|
1894 |
+
#: ../profile-builder-2.0/admin/basic-info.php:108
|
1895 |
+
msgid "Colorpicker"
|
1896 |
+
msgstr ""
|
1897 |
+
|
1898 |
+
#: ../profile-builder-2.0/admin/basic-info.php:109
|
1899 |
+
msgid "reCAPTCHA"
|
1900 |
+
msgstr ""
|
1901 |
+
|
1902 |
+
#: ../profile-builder-2.0/admin/basic-info.php:110
|
1903 |
+
msgid "Country Select"
|
1904 |
+
msgstr ""
|
1905 |
+
|
1906 |
+
#: ../profile-builder-2.0/admin/basic-info.php:111
|
1907 |
+
msgid "Currency Select"
|
1908 |
+
msgstr ""
|
1909 |
+
|
1910 |
+
#: ../profile-builder-2.0/admin/basic-info.php:112
|
1911 |
+
msgid "Timezone Select"
|
1912 |
+
msgstr ""
|
1913 |
+
|
1914 |
+
#: ../profile-builder-2.0/admin/basic-info.php:116
|
1915 |
+
msgid "Input / Hidden Input"
|
1916 |
+
msgstr ""
|
1917 |
+
|
1918 |
+
#: ../profile-builder-2.0/admin/basic-info.php:117
|
1919 |
+
msgid "Number"
|
1920 |
+
msgstr ""
|
1921 |
+
|
1922 |
+
#: ../profile-builder-2.0/admin/basic-info.php:118
|
1923 |
+
msgid "Checkbox"
|
1924 |
+
msgstr ""
|
1925 |
+
|
1926 |
+
#: ../profile-builder-2.0/admin/basic-info.php:119
|
1927 |
+
msgid "Select"
|
1928 |
+
msgstr ""
|
1929 |
+
|
1930 |
+
#: ../profile-builder-2.0/admin/basic-info.php:120
|
1931 |
+
msgid "Radio Buttons"
|
1932 |
+
msgstr ""
|
1933 |
+
|
1934 |
+
#: ../profile-builder-2.0/admin/basic-info.php:121
|
1935 |
+
msgid "Textarea"
|
1936 |
+
msgstr ""
|
1937 |
+
|
1938 |
+
#: ../profile-builder-2.0/admin/basic-info.php:122
|
1939 |
+
msgid "Validation"
|
1940 |
+
msgstr ""
|
1941 |
+
|
1942 |
+
#: ../profile-builder-2.0/admin/basic-info.php:123
|
1943 |
+
msgid "Map"
|
1944 |
+
msgstr ""
|
1945 |
+
|
1946 |
+
#: ../profile-builder-2.0/admin/basic-info.php:124
|
1947 |
+
msgid "HTML"
|
1948 |
+
msgstr ""
|
1949 |
+
|
1950 |
+
#: ../profile-builder-2.0/admin/basic-info.php:133
|
1951 |
+
msgid "Powerful Modules (**)"
|
1952 |
+
msgstr ""
|
1953 |
+
|
1954 |
+
#: ../profile-builder-2.0/admin/basic-info.php:134
|
1955 |
+
msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
|
1956 |
+
msgstr ""
|
1957 |
+
|
1958 |
+
#: ../profile-builder-2.0/admin/basic-info.php:136
|
1959 |
+
msgid "Enable your modules"
|
1960 |
+
msgstr ""
|
1961 |
+
|
1962 |
+
#: ../profile-builder-2.0/admin/basic-info.php:139
|
1963 |
+
msgid "Find out more about PRO Modules"
|
1964 |
+
msgstr ""
|
1965 |
+
|
1966 |
+
#: ../profile-builder-2.0/admin/basic-info.php:144, ../profile-builder-2.0/modules/modules.php:89, ../profile-builder-2.0/modules/user-listing/userlisting.php:11, ../profile-builder-2.0/modules/user-listing/userlisting.php:12, ../profile-builder-2.0/modules/user-listing/userlisting.php:17, ../profile-builder-2.0/modules/user-listing/userlisting.php:23
|
1967 |
+
msgid "User Listing"
|
1968 |
+
msgstr ""
|
1969 |
+
|
1970 |
+
#: ../profile-builder-2.0/admin/basic-info.php:146
|
1971 |
+
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
1972 |
+
msgstr ""
|
1973 |
+
|
1974 |
+
#: ../profile-builder-2.0/admin/basic-info.php:148
|
1975 |
+
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
|
1976 |
+
msgstr ""
|
1977 |
+
|
1978 |
+
#: ../profile-builder-2.0/admin/basic-info.php:152
|
1979 |
+
msgid "Email Customizer"
|
1980 |
+
msgstr ""
|
1981 |
+
|
1982 |
+
#: ../profile-builder-2.0/admin/basic-info.php:153
|
1983 |
+
msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
|
1984 |
+
msgstr ""
|
1985 |
+
|
1986 |
+
#: ../profile-builder-2.0/admin/basic-info.php:156, ../profile-builder-2.0/modules/modules.php:110, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:34
|
1987 |
+
msgid "Custom Redirects"
|
1988 |
+
msgstr ""
|
1989 |
+
|
1990 |
+
#: ../profile-builder-2.0/admin/basic-info.php:157
|
1991 |
+
msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
|
1992 |
+
msgstr ""
|
1993 |
+
|
1994 |
+
#: ../profile-builder-2.0/admin/basic-info.php:162, ../profile-builder-2.0/modules/modules.php:75
|
1995 |
+
msgid "Multiple Registration Forms"
|
1996 |
+
msgstr ""
|
1997 |
+
|
1998 |
+
#: ../profile-builder-2.0/admin/basic-info.php:163
|
1999 |
+
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
2000 |
+
msgstr ""
|
2001 |
+
|
2002 |
+
#: ../profile-builder-2.0/admin/basic-info.php:166, ../profile-builder-2.0/modules/modules.php:82
|
2003 |
+
msgid "Multiple Edit-profile Forms"
|
2004 |
+
msgstr ""
|
2005 |
+
|
2006 |
+
#: ../profile-builder-2.0/admin/basic-info.php:167
|
2007 |
+
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
2008 |
+
msgstr ""
|
2009 |
+
|
2010 |
+
#: ../profile-builder-2.0/admin/basic-info.php:170, ../profile-builder-2.0/modules/modules.php:117
|
2011 |
+
msgid "Repeater Fields"
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: ../profile-builder-2.0/admin/basic-info.php:171
|
2015 |
+
msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: ../profile-builder-2.0/admin/basic-info.php:207
|
2019 |
+
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: ../profile-builder-2.0/admin/basic-info.php:208
|
2023 |
+
msgid "** only available in the %1$sPro version%2$s."
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: ../profile-builder-2.0/admin/general-settings.php:39
|
2027 |
+
msgid "Load Profile Builder's own CSS file in the front-end:"
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: ../profile-builder-2.0/admin/general-settings.php:44
|
2031 |
+
msgid "You can find the default file here: %1$s"
|
2032 |
+
msgstr ""
|
2033 |
+
|
2034 |
+
#: ../profile-builder-2.0/admin/general-settings.php:51
|
2035 |
+
msgid "\"Email Confirmation\" Activated:"
|
2036 |
+
msgstr ""
|
2037 |
+
|
2038 |
+
#: ../profile-builder-2.0/admin/general-settings.php:59
|
2039 |
+
msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
|
2040 |
+
msgstr ""
|
2041 |
+
|
2042 |
+
#: ../profile-builder-2.0/admin/general-settings.php:61
|
2043 |
+
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
2044 |
+
msgstr ""
|
2045 |
+
|
2046 |
+
#: ../profile-builder-2.0/admin/general-settings.php:69
|
2047 |
+
msgid "\"Email Confirmation\" Landing Page:"
|
2048 |
+
msgstr ""
|
2049 |
+
|
2050 |
+
#: ../profile-builder-2.0/admin/general-settings.php:74
|
2051 |
+
msgid "Existing Pages"
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: ../profile-builder-2.0/admin/general-settings.php:89
|
2055 |
+
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: ../profile-builder-2.0/admin/general-settings.php:100
|
2059 |
+
msgid "\"Admin Approval\" Activated:"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: ../profile-builder-2.0/admin/general-settings.php:108
|
2063 |
+
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: ../profile-builder-2.0/admin/general-settings.php:115
|
2067 |
+
msgid "\"Admin Approval\" on User Role:"
|
2068 |
+
msgstr ""
|
2069 |
+
|
2070 |
+
#: ../profile-builder-2.0/admin/general-settings.php:134
|
2071 |
+
msgid "Select on what user roles to activate Admin Approval."
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: ../profile-builder-2.0/admin/general-settings.php:146
|
2075 |
+
msgid "\"Roles Editor\" Activated:"
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
#: ../profile-builder-2.0/admin/general-settings.php:154
|
2079 |
+
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: ../profile-builder-2.0/admin/general-settings.php:165
|
2083 |
+
msgid "\"Content Restriction\" Activated:"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: ../profile-builder-2.0/admin/general-settings.php:173
|
2087 |
+
msgid "Set your settings at %1$sProfile Builder > Content Restriction%2$s and use each page / post / custom post type individual meta-box to restrict content."
|
2088 |
+
msgstr ""
|
2089 |
+
|
2090 |
+
#: ../profile-builder-2.0/admin/general-settings.php:184
|
2091 |
+
msgid "\"Admin Approval\" Feature:"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: ../profile-builder-2.0/admin/general-settings.php:187
|
2095 |
+
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: ../profile-builder-2.0/admin/general-settings.php:194
|
2099 |
+
msgid "Allow Users to Log in With:"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: ../profile-builder-2.0/admin/general-settings.php:198
|
2103 |
+
msgid "Username and Email"
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#: ../profile-builder-2.0/admin/general-settings.php:199, ../profile-builder-2.0/admin/manage-fields.php:212, ../profile-builder-2.0/front-end/login.php:88, ../profile-builder-2.0/front-end/login.php:102, ../profile-builder-2.0/front-end/login.php:231, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:769, ../profile-builder-2.0/modules/user-listing/userlisting.php:2271
|
2107 |
+
msgid "Username"
|
2108 |
+
msgstr ""
|
2109 |
+
|
2110 |
+
#: ../profile-builder-2.0/admin/general-settings.php:200, ../profile-builder-2.0/front-end/login.php:228, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:775, ../profile-builder-2.0/modules/user-listing/userlisting.php:2272
|
2111 |
+
msgid "Email"
|
2112 |
+
msgstr ""
|
2113 |
+
|
2114 |
+
#: ../profile-builder-2.0/admin/general-settings.php:203
|
2115 |
+
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
2116 |
+
msgstr ""
|
2117 |
+
|
2118 |
+
#: ../profile-builder-2.0/admin/general-settings.php:204
|
2119 |
+
msgid "\"Username\" - users can Log In only with Username."
|
2120 |
+
msgstr ""
|
2121 |
+
|
2122 |
+
#: ../profile-builder-2.0/admin/general-settings.php:205
|
2123 |
+
msgid "\"Email\" - users can Log In only with Email."
|
2124 |
+
msgstr ""
|
2125 |
+
|
2126 |
+
#: ../profile-builder-2.0/admin/general-settings.php:212
|
2127 |
+
msgid "Minimum Password Length:"
|
2128 |
+
msgstr ""
|
2129 |
+
|
2130 |
+
#: ../profile-builder-2.0/admin/general-settings.php:217
|
2131 |
+
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
2132 |
+
msgstr ""
|
2133 |
+
|
2134 |
+
#: ../profile-builder-2.0/admin/general-settings.php:224
|
2135 |
+
msgid "Minimum Password Strength:"
|
2136 |
+
msgstr ""
|
2137 |
+
|
2138 |
+
#: ../profile-builder-2.0/admin/general-settings.php:228
|
2139 |
+
msgid "Disabled"
|
2140 |
+
msgstr ""
|
2141 |
+
|
2142 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:12
|
2143 |
+
msgid "Manage Fields"
|
2144 |
+
msgstr ""
|
2145 |
+
|
2146 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:13
|
2147 |
+
msgid "Manage Default and Extra Fields"
|
2148 |
+
msgstr ""
|
2149 |
+
|
2150 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:84
|
2151 |
+
msgid "Choose one of the supported field types"
|
2152 |
+
msgstr ""
|
2153 |
+
|
2154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:86
|
2155 |
+
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2156 |
+
msgstr ""
|
2157 |
+
|
2158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:119
|
2159 |
+
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
|
2160 |
+
msgstr ""
|
2161 |
+
|
2162 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:122
|
2163 |
+
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries"
|
2164 |
+
msgstr ""
|
2165 |
+
|
2166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:128
|
2167 |
+
msgid "Field Title"
|
2168 |
+
msgstr ""
|
2169 |
+
|
2170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:128
|
2171 |
+
msgid "Title of the field"
|
2172 |
+
msgstr ""
|
2173 |
+
|
2174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:129, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
2175 |
+
msgid "Field"
|
2176 |
+
msgstr ""
|
2177 |
+
|
2178 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:130
|
2179 |
+
msgid "Meta-name"
|
2180 |
+
msgstr ""
|
2181 |
+
|
2182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:131, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:69, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:99, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:118, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:143, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:267
|
2183 |
+
msgid "ID"
|
2184 |
+
msgstr ""
|
2185 |
+
|
2186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:131, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:267
|
2187 |
+
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
2188 |
+
msgstr ""
|
2189 |
+
|
2190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:132
|
2191 |
+
msgid "Description"
|
2192 |
+
msgstr ""
|
2193 |
+
|
2194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:132
|
2195 |
+
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
2196 |
+
msgstr ""
|
2197 |
+
|
2198 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:133
|
2199 |
+
msgid "Row Count"
|
2200 |
+
msgstr ""
|
2201 |
+
|
2202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:133
|
2203 |
+
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
2204 |
+
msgstr ""
|
2205 |
+
|
2206 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:134
|
2207 |
+
msgid "Allowed Image Extensions"
|
2208 |
+
msgstr ""
|
2209 |
+
|
2210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:134
|
2211 |
+
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
2212 |
+
msgstr ""
|
2213 |
+
|
2214 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:135
|
2215 |
+
msgid "Allowed Upload Extensions"
|
2216 |
+
msgstr ""
|
2217 |
+
|
2218 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:135
|
2219 |
+
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
|
2220 |
+
msgstr ""
|
2221 |
+
|
2222 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:136
|
2223 |
+
msgid "Avatar Size"
|
2224 |
+
msgstr ""
|
2225 |
+
|
2226 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:136
|
2227 |
+
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2228 |
+
msgstr ""
|
2229 |
+
|
2230 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:137
|
2231 |
+
msgid "Date-format"
|
2232 |
+
msgstr ""
|
2233 |
+
|
2234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:137
|
2235 |
+
msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
|
2236 |
+
msgstr ""
|
2237 |
+
|
2238 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:138
|
2239 |
+
msgid "Terms of Agreement"
|
2240 |
+
msgstr ""
|
2241 |
+
|
2242 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:138
|
2243 |
+
msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: <a href=\"custom_url\">custom_text</a>"
|
2244 |
+
msgstr ""
|
2245 |
+
|
2246 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:139
|
2247 |
+
msgid "Options"
|
2248 |
+
msgstr ""
|
2249 |
+
|
2250 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:139
|
2251 |
+
msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
|
2252 |
+
msgstr ""
|
2253 |
+
|
2254 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:140
|
2255 |
+
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2256 |
+
msgstr ""
|
2257 |
+
|
2258 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:141
|
2259 |
+
msgid "reCAPTCHA Type"
|
2260 |
+
msgstr ""
|
2261 |
+
|
2262 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:141
|
2263 |
+
msgid "Choose the <a href=\"https://developers.google.com/recaptcha/docs/versions\" target=\"_blank\">type of reCAPTCHA</a> you wish to add to this site."
|
2264 |
+
msgstr ""
|
2265 |
+
|
2266 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:142
|
2267 |
+
msgid "Site Key"
|
2268 |
+
msgstr ""
|
2269 |
+
|
2270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:142
|
2271 |
+
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2272 |
+
msgstr ""
|
2273 |
+
|
2274 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:143
|
2275 |
+
msgid "Secret Key"
|
2276 |
+
msgstr ""
|
2277 |
+
|
2278 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:143
|
2279 |
+
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2280 |
+
msgstr ""
|
2281 |
+
|
2282 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:144
|
2283 |
+
msgid "Display on PB forms"
|
2284 |
+
msgstr ""
|
2285 |
+
|
2286 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:144
|
2287 |
+
msgid "PB Login"
|
2288 |
+
msgstr ""
|
2289 |
+
|
2290 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:144
|
2291 |
+
msgid "PB Register"
|
2292 |
+
msgstr ""
|
2293 |
+
|
2294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:144
|
2295 |
+
msgid "PB Recover Password"
|
2296 |
+
msgstr ""
|
2297 |
+
|
2298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:144
|
2299 |
+
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2300 |
+
msgstr ""
|
2301 |
+
|
2302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:145
|
2303 |
+
msgid "Display on default WP forms"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:145
|
2307 |
+
msgid "Default WP Login"
|
2308 |
+
msgstr ""
|
2309 |
+
|
2310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:145
|
2311 |
+
msgid "Default WP Register"
|
2312 |
+
msgstr ""
|
2313 |
+
|
2314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:145
|
2315 |
+
msgid "Default WP Recover Password"
|
2316 |
+
msgstr ""
|
2317 |
+
|
2318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:145
|
2319 |
+
msgid "Select on which default WP forms to display reCAPTCHA"
|
2320 |
+
msgstr ""
|
2321 |
+
|
2322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:146
|
2323 |
+
msgid "User Roles"
|
2324 |
+
msgstr ""
|
2325 |
+
|
2326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:146
|
2327 |
+
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2328 |
+
msgstr ""
|
2329 |
+
|
2330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:147
|
2331 |
+
msgid "User Roles Order"
|
2332 |
+
msgstr ""
|
2333 |
+
|
2334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:147
|
2335 |
+
msgid "Save the user role order from the user roles checkboxes"
|
2336 |
+
msgstr ""
|
2337 |
+
|
2338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:148
|
2339 |
+
msgid "Default Value"
|
2340 |
+
msgstr ""
|
2341 |
+
|
2342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:148
|
2343 |
+
msgid "Default value of the field"
|
2344 |
+
msgstr ""
|
2345 |
+
|
2346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:149, ../profile-builder-2.0/admin/manage-fields.php:151, ../profile-builder-2.0/admin/manage-fields.php:152, ../profile-builder-2.0/admin/manage-fields.php:153
|
2347 |
+
msgid "Default Option"
|
2348 |
+
msgstr ""
|
2349 |
+
|
2350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:149
|
2351 |
+
msgid "Specify the option which should be selected by default"
|
2352 |
+
msgstr ""
|
2353 |
+
|
2354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:150
|
2355 |
+
msgid "Default Option(s)"
|
2356 |
+
msgstr ""
|
2357 |
+
|
2358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:150
|
2359 |
+
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2360 |
+
msgstr ""
|
2361 |
+
|
2362 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:151, ../profile-builder-2.0/admin/manage-fields.php:152, ../profile-builder-2.0/admin/manage-fields.php:153
|
2363 |
+
msgid "Default option of the field"
|
2364 |
+
msgstr ""
|
2365 |
+
|
2366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:154
|
2367 |
+
msgid "Show Currency Symbol"
|
2368 |
+
msgstr ""
|
2369 |
+
|
2370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:154
|
2371 |
+
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2372 |
+
msgstr ""
|
2373 |
+
|
2374 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:155
|
2375 |
+
msgid "Show Post Type"
|
2376 |
+
msgstr ""
|
2377 |
+
|
2378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:155
|
2379 |
+
msgid "Posts from what post type will be displayed in the select."
|
2380 |
+
msgstr ""
|
2381 |
+
|
2382 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:156
|
2383 |
+
msgid "Allowable Values"
|
2384 |
+
msgstr ""
|
2385 |
+
|
2386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:156
|
2387 |
+
msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
|
2388 |
+
msgstr ""
|
2389 |
+
|
2390 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:157
|
2391 |
+
msgid "Error Message"
|
2392 |
+
msgstr ""
|
2393 |
+
|
2394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:157
|
2395 |
+
msgid "Set a custom error message that will be displayed to the user."
|
2396 |
+
msgstr ""
|
2397 |
+
|
2398 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:158
|
2399 |
+
msgid "Time Format"
|
2400 |
+
msgstr ""
|
2401 |
+
|
2402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:158
|
2403 |
+
msgid "Specify the time format."
|
2404 |
+
msgstr ""
|
2405 |
+
|
2406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:159
|
2407 |
+
msgid "Google Maps API Key"
|
2408 |
+
msgstr ""
|
2409 |
+
|
2410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:159
|
2411 |
+
msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
|
2412 |
+
msgstr ""
|
2413 |
+
|
2414 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:160
|
2415 |
+
msgid "Default Latitude"
|
2416 |
+
msgstr ""
|
2417 |
+
|
2418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:160
|
2419 |
+
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2420 |
+
msgstr ""
|
2421 |
+
|
2422 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:161
|
2423 |
+
msgid "Default Longitude"
|
2424 |
+
msgstr ""
|
2425 |
+
|
2426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:161
|
2427 |
+
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2428 |
+
msgstr ""
|
2429 |
+
|
2430 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:162
|
2431 |
+
msgid "Default Zoom Level"
|
2432 |
+
msgstr ""
|
2433 |
+
|
2434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:162
|
2435 |
+
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:163
|
2439 |
+
msgid "Map Height"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:163
|
2443 |
+
msgid "The height of the map."
|
2444 |
+
msgstr ""
|
2445 |
+
|
2446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:164
|
2447 |
+
msgid "Default Content"
|
2448 |
+
msgstr ""
|
2449 |
+
|
2450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:164
|
2451 |
+
msgid "Default value of the textarea"
|
2452 |
+
msgstr ""
|
2453 |
+
|
2454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:165
|
2455 |
+
msgid "HTML Content"
|
2456 |
+
msgstr ""
|
2457 |
+
|
2458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:165
|
2459 |
+
msgid "Add your HTML (or text) content"
|
2460 |
+
msgstr ""
|
2461 |
+
|
2462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
2463 |
+
msgid "Phone Format"
|
2464 |
+
msgstr ""
|
2465 |
+
|
2466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
2467 |
+
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2468 |
+
msgstr ""
|
2469 |
+
|
2470 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
2471 |
+
msgid "Eg. (###) ###-####"
|
2472 |
+
msgstr ""
|
2473 |
+
|
2474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
2475 |
+
msgid "Empty field won't check for correct phone number."
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:167
|
2479 |
+
msgid "Heading Tag"
|
2480 |
+
msgstr ""
|
2481 |
+
|
2482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:167
|
2483 |
+
msgid "Change heading field size on front-end forms"
|
2484 |
+
msgstr ""
|
2485 |
+
|
2486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
2487 |
+
msgid "Min Number Value"
|
2488 |
+
msgstr ""
|
2489 |
+
|
2490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
2491 |
+
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2492 |
+
msgstr ""
|
2493 |
+
|
2494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
2495 |
+
msgid "Leave it empty for no min value"
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
2499 |
+
msgid "Max Number Value"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
2503 |
+
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2504 |
+
msgstr ""
|
2505 |
+
|
2506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
2507 |
+
msgid "Leave it empty for no max value"
|
2508 |
+
msgstr ""
|
2509 |
+
|
2510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
2511 |
+
msgid "Number Step Value"
|
2512 |
+
msgstr ""
|
2513 |
+
|
2514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
2515 |
+
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2516 |
+
msgstr ""
|
2517 |
+
|
2518 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
2519 |
+
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2520 |
+
msgstr ""
|
2521 |
+
|
2522 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
2523 |
+
msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
|
2524 |
+
msgstr ""
|
2525 |
+
|
2526 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
2527 |
+
msgid "Leave it empty for no restriction"
|
2528 |
+
msgstr ""
|
2529 |
+
|
2530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:171
|
2531 |
+
msgid "Whether the field is required or not"
|
2532 |
+
msgstr ""
|
2533 |
+
|
2534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:172
|
2535 |
+
msgid "Overwrite Existing"
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:172
|
2539 |
+
msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
|
2540 |
+
msgstr ""
|
2541 |
+
|
2542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178
|
2543 |
+
msgid "Field Properties"
|
2544 |
+
msgstr ""
|
2545 |
+
|
2546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:192
|
2547 |
+
msgid "Registration & Edit Profile"
|
2548 |
+
msgstr ""
|
2549 |
+
|
2550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:212
|
2551 |
+
msgid "Usernames cannot be changed."
|
2552 |
+
msgstr ""
|
2553 |
+
|
2554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:215, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2279
|
2555 |
+
msgid "Nickname"
|
2556 |
+
msgstr ""
|
2557 |
+
|
2558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:216
|
2559 |
+
msgid "Display name publicly as"
|
2560 |
+
msgstr ""
|
2561 |
+
|
2562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:218, ../profile-builder-2.0/front-end/recover.php:119, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:169, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169, ../profile-builder-2.0/modules/user-listing/userlisting.php:117
|
2563 |
+
msgid "E-mail"
|
2564 |
+
msgstr ""
|
2565 |
+
|
2566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:219, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:33, ../profile-builder-2.0/modules/user-listing/userlisting.php:120, ../profile-builder-2.0/modules/user-listing/userlisting.php:790, ../profile-builder-2.0/modules/user-listing/userlisting.php:2273
|
2567 |
+
msgid "Website"
|
2568 |
+
msgstr ""
|
2569 |
+
|
2570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:223
|
2571 |
+
msgid "AIM"
|
2572 |
+
msgstr ""
|
2573 |
+
|
2574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:224
|
2575 |
+
msgid "Yahoo IM"
|
2576 |
+
msgstr ""
|
2577 |
+
|
2578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:225
|
2579 |
+
msgid "Jabber / Google Talk"
|
2580 |
+
msgstr ""
|
2581 |
+
|
2582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:229, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:793, ../profile-builder-2.0/modules/user-listing/userlisting.php:2274
|
2583 |
+
msgid "Biographical Info"
|
2584 |
+
msgstr ""
|
2585 |
+
|
2586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:229
|
2587 |
+
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2588 |
+
msgstr ""
|
2589 |
+
|
2590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:230, ../profile-builder-2.0/front-end/recover.php:73, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:30
|
2591 |
+
msgid "Password"
|
2592 |
+
msgstr ""
|
2593 |
+
|
2594 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:230
|
2595 |
+
msgid "Type your password."
|
2596 |
+
msgstr ""
|
2597 |
+
|
2598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:231, ../profile-builder-2.0/front-end/recover.php:74
|
2599 |
+
msgid "Repeat Password"
|
2600 |
+
msgstr ""
|
2601 |
+
|
2602 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:231
|
2603 |
+
msgid "Type your password again. "
|
2604 |
+
msgstr ""
|
2605 |
+
|
2606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:233
|
2607 |
+
msgid "Blog Details"
|
2608 |
+
msgstr ""
|
2609 |
+
|
2610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:293, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2611 |
+
msgid "Afghanistan"
|
2612 |
+
msgstr ""
|
2613 |
+
|
2614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:294, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2615 |
+
msgid "Aland Islands"
|
2616 |
+
msgstr ""
|
2617 |
+
|
2618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:295, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2619 |
+
msgid "Albania"
|
2620 |
+
msgstr ""
|
2621 |
+
|
2622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:296, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2623 |
+
msgid "Algeria"
|
2624 |
+
msgstr ""
|
2625 |
+
|
2626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:297, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2627 |
+
msgid "American Samoa"
|
2628 |
+
msgstr ""
|
2629 |
+
|
2630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:298, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2631 |
+
msgid "Andorra"
|
2632 |
+
msgstr ""
|
2633 |
+
|
2634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:299, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2635 |
+
msgid "Angola"
|
2636 |
+
msgstr ""
|
2637 |
+
|
2638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:300, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2639 |
+
msgid "Anguilla"
|
2640 |
+
msgstr ""
|
2641 |
+
|
2642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:301, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2643 |
+
msgid "Antarctica"
|
2644 |
+
msgstr ""
|
2645 |
+
|
2646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:302, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2647 |
+
msgid "Antigua and Barbuda"
|
2648 |
+
msgstr ""
|
2649 |
+
|
2650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:303, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2651 |
+
msgid "Argentina"
|
2652 |
+
msgstr ""
|
2653 |
+
|
2654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:304, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2655 |
+
msgid "Armenia"
|
2656 |
+
msgstr ""
|
2657 |
+
|
2658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:305, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2659 |
+
msgid "Aruba"
|
2660 |
+
msgstr ""
|
2661 |
+
|
2662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:306, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2663 |
+
msgid "Australia"
|
2664 |
+
msgstr ""
|
2665 |
+
|
2666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:307, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2667 |
+
msgid "Austria"
|
2668 |
+
msgstr ""
|
2669 |
+
|
2670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:308, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2671 |
+
msgid "Azerbaijan"
|
2672 |
+
msgstr ""
|
2673 |
+
|
2674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:309, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2675 |
+
msgid "Bahamas"
|
2676 |
+
msgstr ""
|
2677 |
+
|
2678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:310, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2679 |
+
msgid "Bahrain"
|
2680 |
+
msgstr ""
|
2681 |
+
|
2682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:311, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2683 |
+
msgid "Bangladesh"
|
2684 |
+
msgstr ""
|
2685 |
+
|
2686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:312, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2687 |
+
msgid "Barbados"
|
2688 |
+
msgstr ""
|
2689 |
+
|
2690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:313, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2691 |
+
msgid "Belarus"
|
2692 |
+
msgstr ""
|
2693 |
+
|
2694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:314, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2695 |
+
msgid "Belgium"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:315, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2699 |
+
msgid "Belize"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:316, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2703 |
+
msgid "Benin"
|
2704 |
+
msgstr ""
|
2705 |
+
|
2706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:317, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2707 |
+
msgid "Bermuda"
|
2708 |
+
msgstr ""
|
2709 |
+
|
2710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:318, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2711 |
+
msgid "Bhutan"
|
2712 |
+
msgstr ""
|
2713 |
+
|
2714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:319
|
2715 |
+
msgid "Bolivia"
|
2716 |
+
msgstr ""
|
2717 |
+
|
2718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:320
|
2719 |
+
msgid "Bonaire, Saint Eustatius and Saba"
|
2720 |
+
msgstr ""
|
2721 |
+
|
2722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:321, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2723 |
+
msgid "Bosnia and Herzegovina"
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:322, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2727 |
+
msgid "Botswana"
|
2728 |
+
msgstr ""
|
2729 |
+
|
2730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:323, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2731 |
+
msgid "Bouvet Island"
|
2732 |
+
msgstr ""
|
2733 |
+
|
2734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:324, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2735 |
+
msgid "Brazil"
|
2736 |
+
msgstr ""
|
2737 |
+
|
2738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:325, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2739 |
+
msgid "British Indian Ocean Territory"
|
2740 |
+
msgstr ""
|
2741 |
+
|
2742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:326
|
2743 |
+
msgid "British Virgin Islands"
|
2744 |
+
msgstr ""
|
2745 |
+
|
2746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:327
|
2747 |
+
msgid "Brunei"
|
2748 |
+
msgstr ""
|
2749 |
+
|
2750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:328, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2751 |
+
msgid "Bulgaria"
|
2752 |
+
msgstr ""
|
2753 |
+
|
2754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:329, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2755 |
+
msgid "Burkina Faso"
|
2756 |
+
msgstr ""
|
2757 |
+
|
2758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:330, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2759 |
+
msgid "Burundi"
|
2760 |
+
msgstr ""
|
2761 |
+
|
2762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:331, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2763 |
+
msgid "Cambodia"
|
2764 |
+
msgstr ""
|
2765 |
+
|
2766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:332, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2767 |
+
msgid "Cameroon"
|
2768 |
+
msgstr ""
|
2769 |
+
|
2770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:333, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2771 |
+
msgid "Canada"
|
2772 |
+
msgstr ""
|
2773 |
+
|
2774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:334
|
2775 |
+
msgid "Cape Verde"
|
2776 |
+
msgstr ""
|
2777 |
+
|
2778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:335, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2779 |
+
msgid "Cayman Islands"
|
2780 |
+
msgstr ""
|
2781 |
+
|
2782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:336, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2783 |
+
msgid "Central African Republic"
|
2784 |
+
msgstr ""
|
2785 |
+
|
2786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:337, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2787 |
+
msgid "Chad"
|
2788 |
+
msgstr ""
|
2789 |
+
|
2790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:338, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2791 |
+
msgid "Chile"
|
2792 |
+
msgstr ""
|
2793 |
+
|
2794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:339, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2795 |
+
msgid "China"
|
2796 |
+
msgstr ""
|
2797 |
+
|
2798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:340, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2799 |
+
msgid "Christmas Island"
|
2800 |
+
msgstr ""
|
2801 |
+
|
2802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:341
|
2803 |
+
msgid "Cocos Islands"
|
2804 |
+
msgstr ""
|
2805 |
+
|
2806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:342, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2807 |
+
msgid "Colombia"
|
2808 |
+
msgstr ""
|
2809 |
+
|
2810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:343, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2811 |
+
msgid "Comoros"
|
2812 |
+
msgstr ""
|
2813 |
+
|
2814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:344, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2815 |
+
msgid "Cook Islands"
|
2816 |
+
msgstr ""
|
2817 |
+
|
2818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:345, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2819 |
+
msgid "Costa Rica"
|
2820 |
+
msgstr ""
|
2821 |
+
|
2822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:346, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2823 |
+
msgid "Croatia"
|
2824 |
+
msgstr ""
|
2825 |
+
|
2826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:347, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2827 |
+
msgid "Cuba"
|
2828 |
+
msgstr ""
|
2829 |
+
|
2830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:348, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2831 |
+
msgid "Curacao"
|
2832 |
+
msgstr ""
|
2833 |
+
|
2834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:349, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2835 |
+
msgid "Cyprus"
|
2836 |
+
msgstr ""
|
2837 |
+
|
2838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:350, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2839 |
+
msgid "Czech Republic"
|
2840 |
+
msgstr ""
|
2841 |
+
|
2842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:351
|
2843 |
+
msgid "Democratic Republic of the Congo"
|
2844 |
+
msgstr ""
|
2845 |
+
|
2846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:352, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2847 |
+
msgid "Denmark"
|
2848 |
+
msgstr ""
|
2849 |
+
|
2850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:353, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2851 |
+
msgid "Djibouti"
|
2852 |
+
msgstr ""
|
2853 |
+
|
2854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:354, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2855 |
+
msgid "Dominica"
|
2856 |
+
msgstr ""
|
2857 |
+
|
2858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:355, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2859 |
+
msgid "Dominican Republic"
|
2860 |
+
msgstr ""
|
2861 |
+
|
2862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:356
|
2863 |
+
msgid "East Timor"
|
2864 |
+
msgstr ""
|
2865 |
+
|
2866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:357, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2867 |
+
msgid "Ecuador"
|
2868 |
+
msgstr ""
|
2869 |
+
|
2870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:358, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2871 |
+
msgid "Egypt"
|
2872 |
+
msgstr ""
|
2873 |
+
|
2874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:359, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2875 |
+
msgid "El Salvador"
|
2876 |
+
msgstr ""
|
2877 |
+
|
2878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:360, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2879 |
+
msgid "Equatorial Guinea"
|
2880 |
+
msgstr ""
|
2881 |
+
|
2882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:361, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2883 |
+
msgid "Eritrea"
|
2884 |
+
msgstr ""
|
2885 |
+
|
2886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:362, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2887 |
+
msgid "Estonia"
|
2888 |
+
msgstr ""
|
2889 |
+
|
2890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:363, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2891 |
+
msgid "Ethiopia"
|
2892 |
+
msgstr ""
|
2893 |
+
|
2894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:364
|
2895 |
+
msgid "Falkland Islands"
|
2896 |
+
msgstr ""
|
2897 |
+
|
2898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:365, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2899 |
+
msgid "Faroe Islands"
|
2900 |
+
msgstr ""
|
2901 |
+
|
2902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:366, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2903 |
+
msgid "Fiji"
|
2904 |
+
msgstr ""
|
2905 |
+
|
2906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:367, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2907 |
+
msgid "Finland"
|
2908 |
+
msgstr ""
|
2909 |
+
|
2910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:368, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2911 |
+
msgid "France"
|
2912 |
+
msgstr ""
|
2913 |
+
|
2914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:369, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2915 |
+
msgid "French Guiana"
|
2916 |
+
msgstr ""
|
2917 |
+
|
2918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:370, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2919 |
+
msgid "French Polynesia"
|
2920 |
+
msgstr ""
|
2921 |
+
|
2922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:371, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2923 |
+
msgid "French Southern Territories"
|
2924 |
+
msgstr ""
|
2925 |
+
|
2926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:372, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2927 |
+
msgid "Gabon"
|
2928 |
+
msgstr ""
|
2929 |
+
|
2930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:373, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2931 |
+
msgid "Gambia"
|
2932 |
+
msgstr ""
|
2933 |
+
|
2934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:374, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2935 |
+
msgid "Georgia"
|
2936 |
+
msgstr ""
|
2937 |
+
|
2938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:375, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2939 |
+
msgid "Germany"
|
2940 |
+
msgstr ""
|
2941 |
+
|
2942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:376, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2943 |
+
msgid "Ghana"
|
2944 |
+
msgstr ""
|
2945 |
+
|
2946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:377, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2947 |
+
msgid "Gibraltar"
|
2948 |
+
msgstr ""
|
2949 |
+
|
2950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:378, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2951 |
+
msgid "Greece"
|
2952 |
+
msgstr ""
|
2953 |
+
|
2954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:379, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2955 |
+
msgid "Greenland"
|
2956 |
+
msgstr ""
|
2957 |
+
|
2958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:380, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2959 |
+
msgid "Grenada"
|
2960 |
+
msgstr ""
|
2961 |
+
|
2962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:381, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2963 |
+
msgid "Guadeloupe"
|
2964 |
+
msgstr ""
|
2965 |
+
|
2966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:382, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2967 |
+
msgid "Guam"
|
2968 |
+
msgstr ""
|
2969 |
+
|
2970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:383, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2971 |
+
msgid "Guatemala"
|
2972 |
+
msgstr ""
|
2973 |
+
|
2974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:384, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2975 |
+
msgid "Guernsey"
|
2976 |
+
msgstr ""
|
2977 |
+
|
2978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:385, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2979 |
+
msgid "Guinea"
|
2980 |
+
msgstr ""
|
2981 |
+
|
2982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:386, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2983 |
+
msgid "Guinea-Bissau"
|
2984 |
+
msgstr ""
|
2985 |
+
|
2986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:387, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2987 |
+
msgid "Guyana"
|
2988 |
+
msgstr ""
|
2989 |
+
|
2990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:388, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2991 |
+
msgid "Haiti"
|
2992 |
+
msgstr ""
|
2993 |
+
|
2994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:389, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2995 |
+
msgid "Heard Island and McDonald Islands"
|
2996 |
+
msgstr ""
|
2997 |
+
|
2998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:390, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2999 |
+
msgid "Honduras"
|
3000 |
+
msgstr ""
|
3001 |
+
|
3002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:391, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3003 |
+
msgid "Hong Kong"
|
3004 |
+
msgstr ""
|
3005 |
+
|
3006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:392, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3007 |
+
msgid "Hungary"
|
3008 |
+
msgstr ""
|
3009 |
+
|
3010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:393, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3011 |
+
msgid "Iceland"
|
3012 |
+
msgstr ""
|
3013 |
+
|
3014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:394, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3015 |
+
msgid "India"
|
3016 |
+
msgstr ""
|
3017 |
+
|
3018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:395, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3019 |
+
msgid "Indonesia"
|
3020 |
+
msgstr ""
|
3021 |
+
|
3022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:396
|
3023 |
+
msgid "Iran"
|
3024 |
+
msgstr ""
|
3025 |
+
|
3026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:397, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3027 |
+
msgid "Iraq"
|
3028 |
+
msgstr ""
|
3029 |
+
|
3030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:398, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3031 |
+
msgid "Ireland"
|
3032 |
+
msgstr ""
|
3033 |
+
|
3034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:399, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3035 |
+
msgid "Isle of Man"
|
3036 |
+
msgstr ""
|
3037 |
+
|
3038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:400, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3039 |
+
msgid "Israel"
|
3040 |
+
msgstr ""
|
3041 |
+
|
3042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:401, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3043 |
+
msgid "Italy"
|
3044 |
+
msgstr ""
|
3045 |
+
|
3046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:402
|
3047 |
+
msgid "Ivory Coast"
|
3048 |
+
msgstr ""
|
3049 |
+
|
3050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:403, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3051 |
+
msgid "Jamaica"
|
3052 |
+
msgstr ""
|
3053 |
+
|
3054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:404, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3055 |
+
msgid "Japan"
|
3056 |
+
msgstr ""
|
3057 |
+
|
3058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:405, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3059 |
+
msgid "Jersey"
|
3060 |
+
msgstr ""
|
3061 |
+
|
3062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:406, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3063 |
+
msgid "Jordan"
|
3064 |
+
msgstr ""
|
3065 |
+
|
3066 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:407, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3067 |
+
msgid "Kazakhstan"
|
3068 |
+
msgstr ""
|
3069 |
+
|
3070 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:408, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3071 |
+
msgid "Kenya"
|
3072 |
+
msgstr ""
|
3073 |
+
|
3074 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:409, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3075 |
+
msgid "Kiribati"
|
3076 |
+
msgstr ""
|
3077 |
+
|
3078 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:410
|
3079 |
+
msgid "Kosovo"
|
3080 |
+
msgstr ""
|
3081 |
+
|
3082 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:411, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3083 |
+
msgid "Kuwait"
|
3084 |
+
msgstr ""
|
3085 |
+
|
3086 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:412, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3087 |
+
msgid "Kyrgyzstan"
|
3088 |
+
msgstr ""
|
3089 |
+
|
3090 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:413
|
3091 |
+
msgid "Laos"
|
3092 |
+
msgstr ""
|
3093 |
+
|
3094 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:414, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3095 |
+
msgid "Latvia"
|
3096 |
+
msgstr ""
|
3097 |
+
|
3098 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:415, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3099 |
+
msgid "Lebanon"
|
3100 |
+
msgstr ""
|
3101 |
+
|
3102 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:416, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3103 |
+
msgid "Lesotho"
|
3104 |
+
msgstr ""
|
3105 |
+
|
3106 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:417, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3107 |
+
msgid "Liberia"
|
3108 |
+
msgstr ""
|
3109 |
+
|
3110 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:418, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3111 |
+
msgid "Libya"
|
3112 |
+
msgstr ""
|
3113 |
+
|
3114 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:419, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3115 |
+
msgid "Liechtenstein"
|
3116 |
+
msgstr ""
|
3117 |
+
|
3118 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:420, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3119 |
+
msgid "Lithuania"
|
3120 |
+
msgstr ""
|
3121 |
+
|
3122 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:421, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3123 |
+
msgid "Luxembourg"
|
3124 |
+
msgstr ""
|
3125 |
+
|
3126 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:422, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3127 |
+
msgid "Macao"
|
3128 |
+
msgstr ""
|
3129 |
+
|
3130 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:423
|
3131 |
+
msgid "Macedonia"
|
3132 |
+
msgstr ""
|
3133 |
+
|
3134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:424, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3135 |
+
msgid "Madagascar"
|
3136 |
+
msgstr ""
|
3137 |
+
|
3138 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:425, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3139 |
+
msgid "Malawi"
|
3140 |
+
msgstr ""
|
3141 |
+
|
3142 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:426, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3143 |
+
msgid "Malaysia"
|
3144 |
+
msgstr ""
|
3145 |
+
|
3146 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:427, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3147 |
+
msgid "Maldives"
|
3148 |
+
msgstr ""
|
3149 |
+
|
3150 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:428, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3151 |
+
msgid "Mali"
|
3152 |
+
msgstr ""
|
3153 |
+
|
3154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:429, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3155 |
+
msgid "Malta"
|
3156 |
+
msgstr ""
|
3157 |
+
|
3158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:430, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3159 |
+
msgid "Marshall Islands"
|
3160 |
+
msgstr ""
|
3161 |
+
|
3162 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:431, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3163 |
+
msgid "Martinique"
|
3164 |
+
msgstr ""
|
3165 |
+
|
3166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:432, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3167 |
+
msgid "Mauritania"
|
3168 |
+
msgstr ""
|
3169 |
+
|
3170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:433, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3171 |
+
msgid "Mauritius"
|
3172 |
+
msgstr ""
|
3173 |
+
|
3174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:434, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3175 |
+
msgid "Mayotte"
|
3176 |
+
msgstr ""
|
3177 |
+
|
3178 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:435, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3179 |
+
msgid "Mexico"
|
3180 |
+
msgstr ""
|
3181 |
+
|
3182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:436
|
3183 |
+
msgid "Micronesia"
|
3184 |
+
msgstr ""
|
3185 |
+
|
3186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:437
|
3187 |
+
msgid "Moldova"
|
3188 |
+
msgstr ""
|
3189 |
+
|
3190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:438, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3191 |
+
msgid "Monaco"
|
3192 |
+
msgstr ""
|
3193 |
+
|
3194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:439, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3195 |
+
msgid "Mongolia"
|
3196 |
+
msgstr ""
|
3197 |
+
|
3198 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:440, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3199 |
+
msgid "Montenegro"
|
3200 |
+
msgstr ""
|
3201 |
+
|
3202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:441, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3203 |
+
msgid "Montserrat"
|
3204 |
+
msgstr ""
|
3205 |
+
|
3206 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:442, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3207 |
+
msgid "Morocco"
|
3208 |
+
msgstr ""
|
3209 |
+
|
3210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:443, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3211 |
+
msgid "Mozambique"
|
3212 |
+
msgstr ""
|
3213 |
+
|
3214 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:444, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3215 |
+
msgid "Myanmar"
|
3216 |
+
msgstr ""
|
3217 |
+
|
3218 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:445, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3219 |
+
msgid "Namibia"
|
3220 |
+
msgstr ""
|
3221 |
+
|
3222 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:446, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3223 |
+
msgid "Nauru"
|
3224 |
+
msgstr ""
|
3225 |
+
|
3226 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:447, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3227 |
+
msgid "Nepal"
|
3228 |
+
msgstr ""
|
3229 |
+
|
3230 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:448, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3231 |
+
msgid "Netherlands"
|
3232 |
+
msgstr ""
|
3233 |
+
|
3234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:449, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3235 |
+
msgid "New Caledonia"
|
3236 |
+
msgstr ""
|
3237 |
+
|
3238 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:450, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3239 |
+
msgid "New Zealand"
|
3240 |
+
msgstr ""
|
3241 |
+
|
3242 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:451, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3243 |
+
msgid "Nicaragua"
|
3244 |
+
msgstr ""
|
3245 |
+
|
3246 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:452, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3247 |
+
msgid "Niger"
|
3248 |
+
msgstr ""
|
3249 |
+
|
3250 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:453, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3251 |
+
msgid "Nigeria"
|
3252 |
+
msgstr ""
|
3253 |
+
|
3254 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:454, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3255 |
+
msgid "Niue"
|
3256 |
+
msgstr ""
|
3257 |
+
|
3258 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:455, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3259 |
+
msgid "Norfolk Island"
|
3260 |
+
msgstr ""
|
3261 |
+
|
3262 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:456
|
3263 |
+
msgid "North Korea"
|
3264 |
+
msgstr ""
|
3265 |
+
|
3266 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:457, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3267 |
+
msgid "Northern Mariana Islands"
|
3268 |
+
msgstr ""
|
3269 |
+
|
3270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:458, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3271 |
+
msgid "Norway"
|
3272 |
+
msgstr ""
|
3273 |
+
|
3274 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:459, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3275 |
+
msgid "Oman"
|
3276 |
+
msgstr ""
|
3277 |
+
|
3278 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:460, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3279 |
+
msgid "Pakistan"
|
3280 |
+
msgstr ""
|
3281 |
+
|
3282 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:461, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3283 |
+
msgid "Palau"
|
3284 |
+
msgstr ""
|
3285 |
+
|
3286 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:462
|
3287 |
+
msgid "Palestinian Territory"
|
3288 |
+
msgstr ""
|
3289 |
+
|
3290 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:463, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3291 |
+
msgid "Panama"
|
3292 |
+
msgstr ""
|
3293 |
+
|
3294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:464, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3295 |
+
msgid "Papua New Guinea"
|
3296 |
+
msgstr ""
|
3297 |
+
|
3298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:465, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3299 |
+
msgid "Paraguay"
|
3300 |
+
msgstr ""
|
3301 |
+
|
3302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:466, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3303 |
+
msgid "Peru"
|
3304 |
+
msgstr ""
|
3305 |
+
|
3306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:467, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3307 |
+
msgid "Philippines"
|
3308 |
+
msgstr ""
|
3309 |
+
|
3310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:468, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3311 |
+
msgid "Pitcairn"
|
3312 |
+
msgstr ""
|
3313 |
+
|
3314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:469, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3315 |
+
msgid "Poland"
|
3316 |
+
msgstr ""
|
3317 |
+
|
3318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:470, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3319 |
+
msgid "Portugal"
|
3320 |
+
msgstr ""
|
3321 |
+
|
3322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:471, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3323 |
+
msgid "Puerto Rico"
|
3324 |
+
msgstr ""
|
3325 |
+
|
3326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:472, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3327 |
+
msgid "Qatar"
|
3328 |
+
msgstr ""
|
3329 |
+
|
3330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:473
|
3331 |
+
msgid "Republic of the Congo"
|
3332 |
+
msgstr ""
|
3333 |
+
|
3334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:474, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3335 |
+
msgid "Reunion"
|
3336 |
+
msgstr ""
|
3337 |
+
|
3338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:475, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3339 |
+
msgid "Romania"
|
3340 |
+
msgstr ""
|
3341 |
+
|
3342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:476
|
3343 |
+
msgid "Russia"
|
3344 |
+
msgstr ""
|
3345 |
+
|
3346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:477, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3347 |
+
msgid "Rwanda"
|
3348 |
+
msgstr ""
|
3349 |
+
|
3350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:478, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3351 |
+
msgid "Saint Barthelemy"
|
3352 |
+
msgstr ""
|
3353 |
+
|
3354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:479
|
3355 |
+
msgid "Saint Helena"
|
3356 |
+
msgstr ""
|
3357 |
+
|
3358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:480, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3359 |
+
msgid "Saint Kitts and Nevis"
|
3360 |
+
msgstr ""
|
3361 |
+
|
3362 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:481, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3363 |
+
msgid "Saint Lucia"
|
3364 |
+
msgstr ""
|
3365 |
+
|
3366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:482
|
3367 |
+
msgid "Saint Martin"
|
3368 |
+
msgstr ""
|
3369 |
+
|
3370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:483, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3371 |
+
msgid "Saint Pierre and Miquelon"
|
3372 |
+
msgstr ""
|
3373 |
+
|
3374 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:484, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3375 |
+
msgid "Saint Vincent and the Grenadines"
|
3376 |
+
msgstr ""
|
3377 |
+
|
3378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:485, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3379 |
+
msgid "Samoa"
|
3380 |
+
msgstr ""
|
3381 |
+
|
3382 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:486, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3383 |
+
msgid "San Marino"
|
3384 |
+
msgstr ""
|
3385 |
+
|
3386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:487, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3387 |
+
msgid "Sao Tome and Principe"
|
3388 |
+
msgstr ""
|
3389 |
+
|
3390 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:488, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3391 |
+
msgid "Saudi Arabia"
|
3392 |
+
msgstr ""
|
3393 |
+
|
3394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:489, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3395 |
+
msgid "Senegal"
|
3396 |
+
msgstr ""
|
3397 |
+
|
3398 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:490, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3399 |
+
msgid "Serbia"
|
3400 |
+
msgstr ""
|
3401 |
+
|
3402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:491, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3403 |
+
msgid "Seychelles"
|
3404 |
+
msgstr ""
|
3405 |
+
|
3406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:492, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3407 |
+
msgid "Sierra Leone"
|
3408 |
+
msgstr ""
|
3409 |
+
|
3410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:493, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3411 |
+
msgid "Singapore"
|
3412 |
+
msgstr ""
|
3413 |
+
|
3414 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:494
|
3415 |
+
msgid "Sint Maarten"
|
3416 |
+
msgstr ""
|
3417 |
+
|
3418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:495, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3419 |
+
msgid "Slovakia"
|
3420 |
+
msgstr ""
|
3421 |
+
|
3422 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:496, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3423 |
+
msgid "Slovenia"
|
3424 |
+
msgstr ""
|
3425 |
+
|
3426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:497, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3427 |
+
msgid "Solomon Islands"
|
3428 |
+
msgstr ""
|
3429 |
+
|
3430 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:498, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3431 |
+
msgid "Somalia"
|
3432 |
+
msgstr ""
|
3433 |
+
|
3434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:499, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3435 |
+
msgid "South Africa"
|
3436 |
+
msgstr ""
|
3437 |
+
|
3438 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:500, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3439 |
+
msgid "South Georgia and the South Sandwich Islands"
|
3440 |
+
msgstr ""
|
3441 |
+
|
3442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:501
|
3443 |
+
msgid "South Korea"
|
3444 |
+
msgstr ""
|
3445 |
+
|
3446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:502, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3447 |
+
msgid "South Sudan"
|
3448 |
+
msgstr ""
|
3449 |
+
|
3450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:503, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3451 |
+
msgid "Spain"
|
3452 |
+
msgstr ""
|
3453 |
+
|
3454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:504, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3455 |
+
msgid "Sri Lanka"
|
3456 |
+
msgstr ""
|
3457 |
+
|
3458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:505, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3459 |
+
msgid "Sudan"
|
3460 |
+
msgstr ""
|
3461 |
+
|
3462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:506, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3463 |
+
msgid "Suriname"
|
3464 |
+
msgstr ""
|
3465 |
+
|
3466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:507, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3467 |
+
msgid "Svalbard and Jan Mayen"
|
3468 |
+
msgstr ""
|
3469 |
+
|
3470 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:508, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3471 |
+
msgid "Swaziland"
|
3472 |
+
msgstr ""
|
3473 |
+
|
3474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:509, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3475 |
+
msgid "Sweden"
|
3476 |
+
msgstr ""
|
3477 |
+
|
3478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:510, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3479 |
+
msgid "Switzerland"
|
3480 |
+
msgstr ""
|
3481 |
+
|
3482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:511
|
3483 |
+
msgid "Syria"
|
3484 |
+
msgstr ""
|
3485 |
+
|
3486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:512
|
3487 |
+
msgid "Taiwan"
|
3488 |
+
msgstr ""
|
3489 |
+
|
3490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:513, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3491 |
+
msgid "Tajikistan"
|
3492 |
+
msgstr ""
|
3493 |
+
|
3494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:514
|
3495 |
+
msgid "Tanzania"
|
3496 |
+
msgstr ""
|
3497 |
+
|
3498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:515, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3499 |
+
msgid "Thailand"
|
3500 |
+
msgstr ""
|
3501 |
+
|
3502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:516, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3503 |
+
msgid "Togo"
|
3504 |
+
msgstr ""
|
3505 |
+
|
3506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:517, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3507 |
+
msgid "Tokelau"
|
3508 |
+
msgstr ""
|
3509 |
+
|
3510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:518, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3511 |
+
msgid "Tonga"
|
3512 |
+
msgstr ""
|
3513 |
+
|
3514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:519, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3515 |
+
msgid "Trinidad and Tobago"
|
3516 |
+
msgstr ""
|
3517 |
+
|
3518 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:520, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3519 |
+
msgid "Tunisia"
|
3520 |
+
msgstr ""
|
3521 |
+
|
3522 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:521, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3523 |
+
msgid "Turkey"
|
3524 |
+
msgstr ""
|
3525 |
+
|
3526 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:522, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3527 |
+
msgid "Turkmenistan"
|
3528 |
+
msgstr ""
|
3529 |
+
|
3530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:523, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3531 |
+
msgid "Turks and Caicos Islands"
|
3532 |
+
msgstr ""
|
3533 |
+
|
3534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:524, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3535 |
+
msgid "Tuvalu"
|
3536 |
+
msgstr ""
|
3537 |
+
|
3538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:525
|
3539 |
+
msgid "U.S. Virgin Islands"
|
3540 |
+
msgstr ""
|
3541 |
+
|
3542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:526, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3543 |
+
msgid "Uganda"
|
3544 |
+
msgstr ""
|
3545 |
+
|
3546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:527, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3547 |
+
msgid "Ukraine"
|
3548 |
+
msgstr ""
|
3549 |
+
|
3550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:528, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3551 |
+
msgid "United Arab Emirates"
|
3552 |
+
msgstr ""
|
3553 |
+
|
3554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:529, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3555 |
+
msgid "United Kingdom"
|
3556 |
+
msgstr ""
|
3557 |
+
|
3558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:530, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3559 |
+
msgid "United States"
|
3560 |
+
msgstr ""
|
3561 |
+
|
3562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:531, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3563 |
+
msgid "United States Minor Outlying Islands"
|
3564 |
+
msgstr ""
|
3565 |
+
|
3566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:532, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3567 |
+
msgid "Uruguay"
|
3568 |
+
msgstr ""
|
3569 |
+
|
3570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:533, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3571 |
+
msgid "Uzbekistan"
|
3572 |
+
msgstr ""
|
3573 |
+
|
3574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:534, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3575 |
+
msgid "Vanuatu"
|
3576 |
+
msgstr ""
|
3577 |
+
|
3578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:535
|
3579 |
+
msgid "Vatican"
|
3580 |
+
msgstr ""
|
3581 |
+
|
3582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:536
|
3583 |
+
msgid "Venezuela"
|
3584 |
+
msgstr ""
|
3585 |
+
|
3586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:537
|
3587 |
+
msgid "Vietnam"
|
3588 |
+
msgstr ""
|
3589 |
+
|
3590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:538, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3591 |
+
msgid "Wallis and Futuna"
|
3592 |
+
msgstr ""
|
3593 |
+
|
3594 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:539, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3595 |
+
msgid "Western Sahara"
|
3596 |
+
msgstr ""
|
3597 |
+
|
3598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:540, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3599 |
+
msgid "Yemen"
|
3600 |
+
msgstr ""
|
3601 |
+
|
3602 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:541, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3603 |
+
msgid "Zambia"
|
3604 |
+
msgstr ""
|
3605 |
+
|
3606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:542, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3607 |
+
msgid "Zimbabwe"
|
3608 |
+
msgstr ""
|
3609 |
+
|
3610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:575
|
3611 |
+
msgid "Albania Lek"
|
3612 |
+
msgstr ""
|
3613 |
+
|
3614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:576
|
3615 |
+
msgid "Afghanistan Afghani"
|
3616 |
+
msgstr ""
|
3617 |
+
|
3618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:577
|
3619 |
+
msgid "Argentina Peso"
|
3620 |
+
msgstr ""
|
3621 |
+
|
3622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:579
|
3623 |
+
msgid "Australia Dollar"
|
3624 |
+
msgstr ""
|
3625 |
+
|
3626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:580
|
3627 |
+
msgid "Azerbaijan New Manat"
|
3628 |
+
msgstr ""
|
3629 |
+
|
3630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:581
|
3631 |
+
msgid "Bahamas Dollar"
|
3632 |
+
msgstr ""
|
3633 |
+
|
3634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:582
|
3635 |
+
msgid "Barbados Dollar"
|
3636 |
+
msgstr ""
|
3637 |
+
|
3638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:583
|
3639 |
+
msgid "Bangladeshi taka"
|
3640 |
+
msgstr ""
|
3641 |
+
|
3642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:584
|
3643 |
+
msgid "Belarus Ruble"
|
3644 |
+
msgstr ""
|
3645 |
+
|
3646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:585
|
3647 |
+
msgid "Belize Dollar"
|
3648 |
+
msgstr ""
|
3649 |
+
|
3650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:586
|
3651 |
+
msgid "Bermuda Dollar"
|
3652 |
+
msgstr ""
|
3653 |
+
|
3654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:587
|
3655 |
+
msgid "Bolivia Boliviano"
|
3656 |
+
msgstr ""
|
3657 |
+
|
3658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:588
|
3659 |
+
msgid "Bosnia and Herzegovina Convertible Marka"
|
3660 |
+
msgstr ""
|
3661 |
+
|
3662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:589
|
3663 |
+
msgid "Botswana Pula"
|
3664 |
+
msgstr ""
|
3665 |
+
|
3666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:590
|
3667 |
+
msgid "Bulgaria Lev"
|
3668 |
+
msgstr ""
|
3669 |
+
|
3670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:591
|
3671 |
+
msgid "Brazil Real"
|
3672 |
+
msgstr ""
|
3673 |
+
|
3674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:592
|
3675 |
+
msgid "Brunei Darussalam Dollar"
|
3676 |
+
msgstr ""
|
3677 |
+
|
3678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:593
|
3679 |
+
msgid "Cambodia Riel"
|
3680 |
+
msgstr ""
|
3681 |
+
|
3682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:594
|
3683 |
+
msgid "Canada Dollar"
|
3684 |
+
msgstr ""
|
3685 |
+
|
3686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:595
|
3687 |
+
msgid "Cayman Islands Dollar"
|
3688 |
+
msgstr ""
|
3689 |
+
|
3690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:596
|
3691 |
+
msgid "Chile Peso"
|
3692 |
+
msgstr ""
|
3693 |
+
|
3694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:597
|
3695 |
+
msgid "China Yuan Renminbi"
|
3696 |
+
msgstr ""
|
3697 |
+
|
3698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:598
|
3699 |
+
msgid "Colombia Peso"
|
3700 |
+
msgstr ""
|
3701 |
+
|
3702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:599
|
3703 |
+
msgid "Costa Rica Colon"
|
3704 |
+
msgstr ""
|
3705 |
+
|
3706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:600
|
3707 |
+
msgid "Croatia Kuna"
|
3708 |
+
msgstr ""
|
3709 |
+
|
3710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:601
|
3711 |
+
msgid "Cuba Peso"
|
3712 |
+
msgstr ""
|
3713 |
+
|
3714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:602
|
3715 |
+
msgid "Czech Republic Koruna"
|
3716 |
+
msgstr ""
|
3717 |
+
|
3718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:603
|
3719 |
+
msgid "Denmark Krone"
|
3720 |
+
msgstr ""
|
3721 |
+
|
3722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:604
|
3723 |
+
msgid "Dominican Republic Peso"
|
3724 |
+
msgstr ""
|
3725 |
+
|
3726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:605
|
3727 |
+
msgid "East Caribbean Dollar"
|
3728 |
+
msgstr ""
|
3729 |
+
|
3730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:606
|
3731 |
+
msgid "Egypt Pound"
|
3732 |
+
msgstr ""
|
3733 |
+
|
3734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:607
|
3735 |
+
msgid "El Salvador Colon"
|
3736 |
+
msgstr ""
|
3737 |
+
|
3738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:608
|
3739 |
+
msgid "Estonia Kroon"
|
3740 |
+
msgstr ""
|
3741 |
+
|
3742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:609
|
3743 |
+
msgid "Euro"
|
3744 |
+
msgstr ""
|
3745 |
+
|
3746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:610
|
3747 |
+
msgid "Falkland Islands (Malvinas) Pound"
|
3748 |
+
msgstr ""
|
3749 |
+
|
3750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:611
|
3751 |
+
msgid "Fiji Dollar"
|
3752 |
+
msgstr ""
|
3753 |
+
|
3754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:612
|
3755 |
+
msgid "Ghana Cedis"
|
3756 |
+
msgstr ""
|
3757 |
+
|
3758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:613
|
3759 |
+
msgid "Gibraltar Pound"
|
3760 |
+
msgstr ""
|
3761 |
+
|
3762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:614
|
3763 |
+
msgid "Guatemala Quetzal"
|
3764 |
+
msgstr ""
|
3765 |
+
|
3766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:615
|
3767 |
+
msgid "Guernsey Pound"
|
3768 |
+
msgstr ""
|
3769 |
+
|
3770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:616
|
3771 |
+
msgid "Guyana Dollar"
|
3772 |
+
msgstr ""
|
3773 |
+
|
3774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:617
|
3775 |
+
msgid "Honduras Lempira"
|
3776 |
+
msgstr ""
|
3777 |
+
|
3778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:618
|
3779 |
+
msgid "Hong Kong Dollar"
|
3780 |
+
msgstr ""
|
3781 |
+
|
3782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:619
|
3783 |
+
msgid "Hungary Forint"
|
3784 |
+
msgstr ""
|
3785 |
+
|
3786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:620
|
3787 |
+
msgid "Iceland Krona"
|
3788 |
+
msgstr ""
|
3789 |
+
|
3790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:621
|
3791 |
+
msgid "India Rupee"
|
3792 |
+
msgstr ""
|
3793 |
+
|
3794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:622
|
3795 |
+
msgid "Indonesia Rupiah"
|
3796 |
+
msgstr ""
|
3797 |
+
|
3798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:623
|
3799 |
+
msgid "Iran Rial"
|
3800 |
+
msgstr ""
|
3801 |
+
|
3802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:624
|
3803 |
+
msgid "Isle of Man Pound"
|
3804 |
+
msgstr ""
|
3805 |
+
|
3806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:625
|
3807 |
+
msgid "Israel Shekel"
|
3808 |
+
msgstr ""
|
3809 |
+
|
3810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:626
|
3811 |
+
msgid "Jamaica Dollar"
|
3812 |
+
msgstr ""
|
3813 |
+
|
3814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:627
|
3815 |
+
msgid "Japan Yen"
|
3816 |
+
msgstr ""
|
3817 |
+
|
3818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:628
|
3819 |
+
msgid "Jersey Pound"
|
3820 |
+
msgstr ""
|
3821 |
+
|
3822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:629
|
3823 |
+
msgid "Kazakhstan Tenge"
|
3824 |
+
msgstr ""
|
3825 |
+
|
3826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:630
|
3827 |
+
msgid "Korea (North) Won"
|
3828 |
+
msgstr ""
|
3829 |
+
|
3830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:631
|
3831 |
+
msgid "Korea (South) Won"
|
3832 |
+
msgstr ""
|
3833 |
+
|
3834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:632
|
3835 |
+
msgid "Kyrgyzstan Som"
|
3836 |
+
msgstr ""
|
3837 |
+
|
3838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:633
|
3839 |
+
msgid "Laos Kip"
|
3840 |
+
msgstr ""
|
3841 |
+
|
3842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:634
|
3843 |
+
msgid "Latvia Lat"
|
3844 |
+
msgstr ""
|
3845 |
+
|
3846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:635
|
3847 |
+
msgid "Lebanon Pound"
|
3848 |
+
msgstr ""
|
3849 |
+
|
3850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:636
|
3851 |
+
msgid "Liberia Dollar"
|
3852 |
+
msgstr ""
|
3853 |
+
|
3854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:637
|
3855 |
+
msgid "Lithuania Litas"
|
3856 |
+
msgstr ""
|
3857 |
+
|
3858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:638
|
3859 |
+
msgid "Macedonia Denar"
|
3860 |
+
msgstr ""
|
3861 |
+
|
3862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:639
|
3863 |
+
msgid "Malaysia Ringgit"
|
3864 |
+
msgstr ""
|
3865 |
+
|
3866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:640
|
3867 |
+
msgid "Mauritius Rupee"
|
3868 |
+
msgstr ""
|
3869 |
+
|
3870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:641
|
3871 |
+
msgid "Mexico Peso"
|
3872 |
+
msgstr ""
|
3873 |
+
|
3874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:642
|
3875 |
+
msgid "Mongolia Tughrik"
|
3876 |
+
msgstr ""
|
3877 |
+
|
3878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:643
|
3879 |
+
msgid "Mozambique Metical"
|
3880 |
+
msgstr ""
|
3881 |
+
|
3882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:644
|
3883 |
+
msgid "Namibia Dollar"
|
3884 |
+
msgstr ""
|
3885 |
+
|
3886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:645
|
3887 |
+
msgid "Nepal Rupee"
|
3888 |
+
msgstr ""
|
3889 |
+
|
3890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:646
|
3891 |
+
msgid "Netherlands Antilles Guilder"
|
3892 |
+
msgstr ""
|
3893 |
+
|
3894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:647
|
3895 |
+
msgid "New Zealand Dollar"
|
3896 |
+
msgstr ""
|
3897 |
+
|
3898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:648
|
3899 |
+
msgid "Nicaragua Cordoba"
|
3900 |
+
msgstr ""
|
3901 |
+
|
3902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:649
|
3903 |
+
msgid "Nigeria Naira"
|
3904 |
+
msgstr ""
|
3905 |
+
|
3906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:650
|
3907 |
+
msgid "Norway Krone"
|
3908 |
+
msgstr ""
|
3909 |
+
|
3910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:651
|
3911 |
+
msgid "Oman Rial"
|
3912 |
+
msgstr ""
|
3913 |
+
|
3914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:652
|
3915 |
+
msgid "Pakistan Rupee"
|
3916 |
+
msgstr ""
|
3917 |
+
|
3918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:653
|
3919 |
+
msgid "Panama Balboa"
|
3920 |
+
msgstr ""
|
3921 |
+
|
3922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:654
|
3923 |
+
msgid "Paraguay Guarani"
|
3924 |
+
msgstr ""
|
3925 |
+
|
3926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:655
|
3927 |
+
msgid "Peru Nuevo Sol"
|
3928 |
+
msgstr ""
|
3929 |
+
|
3930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:656
|
3931 |
+
msgid "Philippines Peso"
|
3932 |
+
msgstr ""
|
3933 |
+
|
3934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:657
|
3935 |
+
msgid "Poland Zloty"
|
3936 |
+
msgstr ""
|
3937 |
+
|
3938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:658
|
3939 |
+
msgid "Qatar Riyal"
|
3940 |
+
msgstr ""
|
3941 |
+
|
3942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:659
|
3943 |
+
msgid "Romania New Leu"
|
3944 |
+
msgstr ""
|
3945 |
+
|
3946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:660
|
3947 |
+
msgid "Russia Ruble"
|
3948 |
+
msgstr ""
|
3949 |
+
|
3950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:661
|
3951 |
+
msgid "Saint Helena Pound"
|
3952 |
+
msgstr ""
|
3953 |
+
|
3954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:662
|
3955 |
+
msgid "Saudi Arabia Riyal"
|
3956 |
+
msgstr ""
|
3957 |
+
|
3958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:663
|
3959 |
+
msgid "Serbia Dinar"
|
3960 |
+
msgstr ""
|
3961 |
+
|
3962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:664
|
3963 |
+
msgid "Seychelles Rupee"
|
3964 |
+
msgstr ""
|
3965 |
+
|
3966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:665
|
3967 |
+
msgid "Singapore Dollar"
|
3968 |
+
msgstr ""
|
3969 |
+
|
3970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:666
|
3971 |
+
msgid "Solomon Islands Dollar"
|
3972 |
+
msgstr ""
|
3973 |
+
|
3974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:667
|
3975 |
+
msgid "Somalia Shilling"
|
3976 |
+
msgstr ""
|
3977 |
+
|
3978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:668
|
3979 |
+
msgid "South Africa Rand"
|
3980 |
+
msgstr ""
|
3981 |
+
|
3982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:669
|
3983 |
+
msgid "Sri Lanka Rupee"
|
3984 |
+
msgstr ""
|
3985 |
+
|
3986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:670
|
3987 |
+
msgid "Sweden Krona"
|
3988 |
+
msgstr ""
|
3989 |
+
|
3990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:671
|
3991 |
+
msgid "Switzerland Franc"
|
3992 |
+
msgstr ""
|
3993 |
+
|
3994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:672
|
3995 |
+
msgid "Suriname Dollar"
|
3996 |
+
msgstr ""
|
3997 |
+
|
3998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:673
|
3999 |
+
msgid "Syria Pound"
|
4000 |
+
msgstr ""
|
4001 |
+
|
4002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:674
|
4003 |
+
msgid "Taiwan New Dollar"
|
4004 |
+
msgstr ""
|
4005 |
+
|
4006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:675
|
4007 |
+
msgid "Thailand Baht"
|
4008 |
+
msgstr ""
|
4009 |
+
|
4010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:676
|
4011 |
+
msgid "Trinidad and Tobago Dollar"
|
4012 |
+
msgstr ""
|
4013 |
+
|
4014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:677, ../profile-builder-2.0/admin/manage-fields.php:678
|
4015 |
+
msgid "Turkey Lira"
|
4016 |
+
msgstr ""
|
4017 |
+
|
4018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:679
|
4019 |
+
msgid "Tuvalu Dollar"
|
4020 |
+
msgstr ""
|
4021 |
+
|
4022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:680
|
4023 |
+
msgid "Ukraine Hryvna"
|
4024 |
+
msgstr ""
|
4025 |
+
|
4026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:681
|
4027 |
+
msgid "United Kingdom Pound"
|
4028 |
+
msgstr ""
|
4029 |
+
|
4030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:682
|
4031 |
+
msgid "Uganda Shilling"
|
4032 |
+
msgstr ""
|
4033 |
+
|
4034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:683
|
4035 |
+
msgid "US Dollar"
|
4036 |
+
msgstr ""
|
4037 |
+
|
4038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:684
|
4039 |
+
msgid "Uruguay Peso"
|
4040 |
+
msgstr ""
|
4041 |
+
|
4042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:685
|
4043 |
+
msgid "Uzbekistan Som"
|
4044 |
+
msgstr ""
|
4045 |
+
|
4046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:686
|
4047 |
+
msgid "Venezuela Bolivar"
|
4048 |
+
msgstr ""
|
4049 |
+
|
4050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:687
|
4051 |
+
msgid "Viet Nam Dong"
|
4052 |
+
msgstr ""
|
4053 |
+
|
4054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:688
|
4055 |
+
msgid "Yemen Rial"
|
4056 |
+
msgstr ""
|
4057 |
+
|
4058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:689
|
4059 |
+
msgid "Zimbabwe Dollar"
|
4060 |
+
msgstr ""
|
4061 |
+
|
4062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:991, ../profile-builder-2.0/admin/manage-fields.php:1148
|
4063 |
+
msgid ""
|
4064 |
+
"You must select a field\n"
|
4065 |
+
""
|
4066 |
+
msgstr ""
|
4067 |
+
|
4068 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1001
|
4069 |
+
msgid ""
|
4070 |
+
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4071 |
+
""
|
4072 |
+
msgstr ""
|
4073 |
+
|
4074 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1012
|
4075 |
+
msgid ""
|
4076 |
+
"The entered avatar size is not between 20 and 200\n"
|
4077 |
+
""
|
4078 |
+
msgstr ""
|
4079 |
+
|
4080 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1015
|
4081 |
+
msgid ""
|
4082 |
+
"The entered avatar size is not numerical\n"
|
4083 |
+
""
|
4084 |
+
msgstr ""
|
4085 |
+
|
4086 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1023
|
4087 |
+
msgid ""
|
4088 |
+
"The entered row number is not numerical\n"
|
4089 |
+
""
|
4090 |
+
msgstr ""
|
4091 |
+
|
4092 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1026
|
4093 |
+
msgid ""
|
4094 |
+
"You must enter a value for the row number\n"
|
4095 |
+
""
|
4096 |
+
msgstr ""
|
4097 |
+
|
4098 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1034
|
4099 |
+
msgid ""
|
4100 |
+
"You must enter the site key\n"
|
4101 |
+
""
|
4102 |
+
msgstr ""
|
4103 |
+
|
4104 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1036
|
4105 |
+
msgid ""
|
4106 |
+
"You must enter the secret key\n"
|
4107 |
+
""
|
4108 |
+
msgstr ""
|
4109 |
+
|
4110 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1047
|
4111 |
+
msgid ""
|
4112 |
+
"The entered value for the Datepicker is not a valid date-format\n"
|
4113 |
+
""
|
4114 |
+
msgstr ""
|
4115 |
+
|
4116 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1050
|
4117 |
+
msgid ""
|
4118 |
+
"You must enter a value for the date-format\n"
|
4119 |
+
""
|
4120 |
+
msgstr ""
|
4121 |
+
|
4122 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1066
|
4123 |
+
msgid ""
|
4124 |
+
"The meta-name cannot be empty\n"
|
4125 |
+
""
|
4126 |
+
msgstr ""
|
4127 |
+
|
4128 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1078, ../profile-builder-2.0/admin/manage-fields.php:1086, ../profile-builder-2.0/admin/manage-fields.php:1097
|
4129 |
+
msgid ""
|
4130 |
+
"That meta-name is already in use\n"
|
4131 |
+
""
|
4132 |
+
msgstr ""
|
4133 |
+
|
4134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1108
|
4135 |
+
msgid ""
|
4136 |
+
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4137 |
+
""
|
4138 |
+
msgstr ""
|
4139 |
+
|
4140 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1128
|
4141 |
+
msgid ""
|
4142 |
+
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4143 |
+
""
|
4144 |
+
msgstr ""
|
4145 |
+
|
4146 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1132
|
4147 |
+
msgid ""
|
4148 |
+
"The following option did not coincide with the ones in the options list: %s\n"
|
4149 |
+
""
|
4150 |
+
msgstr ""
|
4151 |
+
|
4152 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1139
|
4153 |
+
msgid ""
|
4154 |
+
"Please select at least one user role\n"
|
4155 |
+
""
|
4156 |
+
msgstr ""
|
4157 |
+
|
4158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1155
|
4159 |
+
msgid ""
|
4160 |
+
"That field is already added in this form\n"
|
4161 |
+
""
|
4162 |
+
msgstr ""
|
4163 |
+
|
4164 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1204
|
4165 |
+
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4166 |
+
msgstr ""
|
4167 |
+
|
4168 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1219
|
4169 |
+
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4170 |
+
msgstr ""
|
4171 |
+
|
4172 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1228
|
4173 |
+
msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
|
4174 |
+
msgstr ""
|
4175 |
+
|
4176 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1230
|
4177 |
+
msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
4178 |
+
msgstr ""
|
4179 |
+
|
4180 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1325
|
4181 |
+
msgid "Search Location"
|
4182 |
+
msgstr ""
|
4183 |
+
|
4184 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:10, ../profile-builder-2.0/admin/pms-cross-promotion.php:10
|
4185 |
+
msgid "Paid Accounts"
|
4186 |
+
msgstr ""
|
4187 |
+
|
4188 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:33
|
4189 |
+
msgid "Paid Member Subscriptions - a free WordPress plugin"
|
4190 |
+
msgstr ""
|
4191 |
+
|
4192 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:37
|
4193 |
+
msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
|
4194 |
+
msgstr ""
|
4195 |
+
|
4196 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:40
|
4197 |
+
msgid "Paid & Free Subscriptions"
|
4198 |
+
msgstr ""
|
4199 |
+
|
4200 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:41
|
4201 |
+
msgid "Restrict Content"
|
4202 |
+
msgstr ""
|
4203 |
+
|
4204 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:42
|
4205 |
+
msgid "Member Management"
|
4206 |
+
msgstr ""
|
4207 |
+
|
4208 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:43
|
4209 |
+
msgid "Email Templates"
|
4210 |
+
msgstr ""
|
4211 |
+
|
4212 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:44
|
4213 |
+
msgid "Account Management"
|
4214 |
+
msgstr ""
|
4215 |
+
|
4216 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:45
|
4217 |
+
msgid "Subscription Management"
|
4218 |
+
msgstr ""
|
4219 |
+
|
4220 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:46
|
4221 |
+
msgid "Payment Management"
|
4222 |
+
msgstr ""
|
4223 |
+
|
4224 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:83
|
4225 |
+
msgid "Plugin is Active"
|
4226 |
+
msgstr ""
|
4227 |
+
|
4228 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:84
|
4229 |
+
msgid "Plugin has been activated"
|
4230 |
+
msgstr ""
|
4231 |
+
|
4232 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:91
|
4233 |
+
msgid "Plugin has been deactivated."
|
4234 |
+
msgstr ""
|
4235 |
+
|
4236 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:104
|
4237 |
+
msgid "Accept user payments, create subscription plans and restrict content on your website."
|
4238 |
+
msgstr ""
|
4239 |
+
|
4240 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:155
|
4241 |
+
msgid "Step by Step Quick Setup"
|
4242 |
+
msgstr ""
|
4243 |
+
|
4244 |
+
#: ../profile-builder-2.0/admin/pms-cross-promotion.php:239
|
4245 |
+
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4246 |
+
msgstr ""
|
4247 |
+
|
4248 |
+
#: ../profile-builder-2.0/admin/register-version.php:14
|
4249 |
+
msgid "Register Your Version"
|
4250 |
+
msgstr ""
|
4251 |
+
|
4252 |
+
#: ../profile-builder-2.0/admin/register-version.php:14
|
4253 |
+
msgid "Register Version"
|
4254 |
+
msgstr ""
|
4255 |
+
|
4256 |
+
#: ../profile-builder-2.0/admin/register-version.php:22, ../profile-builder-2.0/admin/register-version.php:22
|
4257 |
+
msgid "Profile Builder Register"
|
4258 |
+
msgstr ""
|
4259 |
+
|
4260 |
+
#: ../profile-builder-2.0/admin/register-version.php:61
|
4261 |
+
msgid "Register your version of %s"
|
4262 |
+
msgstr ""
|
4263 |
+
|
4264 |
+
#: ../profile-builder-2.0/admin/register-version.php:69
|
4265 |
+
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
4266 |
+
msgstr ""
|
4267 |
+
|
4268 |
+
#: ../profile-builder-2.0/admin/register-version.php:70
|
4269 |
+
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
4270 |
+
msgstr ""
|
4271 |
+
|
4272 |
+
#: ../profile-builder-2.0/admin/register-version.php:72
|
4273 |
+
msgid " Serial Number:"
|
4274 |
+
msgstr ""
|
4275 |
+
|
4276 |
+
#: ../profile-builder-2.0/admin/register-version.php:77
|
4277 |
+
msgid "The serial number was successfully validated!"
|
4278 |
+
msgstr ""
|
4279 |
+
|
4280 |
+
#: ../profile-builder-2.0/admin/register-version.php:79
|
4281 |
+
msgid "The serial number entered couldn't be validated!"
|
4282 |
+
msgstr ""
|
4283 |
+
|
4284 |
+
#: ../profile-builder-2.0/admin/register-version.php:81
|
4285 |
+
msgid "The serial number is about to expire soon!"
|
4286 |
+
msgstr ""
|
4287 |
+
|
4288 |
+
#: ../profile-builder-2.0/admin/register-version.php:81
|
4289 |
+
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
4290 |
+
msgstr ""
|
4291 |
+
|
4292 |
+
#: ../profile-builder-2.0/admin/register-version.php:83
|
4293 |
+
msgid "The serial number couldn't be validated because it expired!"
|
4294 |
+
msgstr ""
|
4295 |
+
|
4296 |
+
#: ../profile-builder-2.0/admin/register-version.php:83
|
4297 |
+
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
4298 |
+
msgstr ""
|
4299 |
+
|
4300 |
+
#: ../profile-builder-2.0/admin/register-version.php:85
|
4301 |
+
msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
|
4302 |
+
msgstr ""
|
4303 |
+
|
4304 |
+
#: ../profile-builder-2.0/admin/register-version.php:87
|
4305 |
+
msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4306 |
+
msgstr ""
|
4307 |
+
|
4308 |
+
#: ../profile-builder-2.0/admin/register-version.php:243
|
4309 |
+
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4310 |
+
msgstr ""
|
4311 |
+
|
4312 |
+
#: ../profile-builder-2.0/admin/register-version.php:246
|
4313 |
+
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %5$sDismiss%6$s</p>"
|
4314 |
+
msgstr ""
|
4315 |
+
|
4316 |
+
#: ../profile-builder-2.0/admin/register-version.php:251
|
4317 |
+
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40% off %4$s %6$sDismiss%7$s</p>"
|
4318 |
+
msgstr ""
|
4319 |
+
|
4320 |
+
#: ../profile-builder-2.0/features/functions.php:537
|
4321 |
+
msgid "Strength indicator"
|
4322 |
+
msgstr ""
|
4323 |
+
|
4324 |
+
#: ../profile-builder-2.0/features/functions.php:563, ../profile-builder-2.0/features/functions.php:587
|
4325 |
+
msgid "Very Weak"
|
4326 |
+
msgstr ""
|
4327 |
+
|
4328 |
+
#: ../profile-builder-2.0/features/functions.php:577
|
4329 |
+
msgid "Minimum length of %d characters."
|
4330 |
+
msgstr ""
|
4331 |
+
|
4332 |
+
#: ../profile-builder-2.0/features/functions.php:588
|
4333 |
+
msgid "The password must have a minimum strength of %s."
|
4334 |
+
msgstr ""
|
4335 |
+
|
4336 |
+
#: ../profile-builder-2.0/features/functions.php:665
|
4337 |
+
msgid "This field is required"
|
4338 |
+
msgstr ""
|
4339 |
+
|
4340 |
+
#: ../profile-builder-2.0/features/functions.php:703, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:465, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:516, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:561
|
4341 |
+
msgid "Please enter a (valid) reCAPTCHA value"
|
4342 |
+
msgstr ""
|
4343 |
+
|
4344 |
+
#: ../profile-builder-2.0/features/functions.php:710
|
4345 |
+
msgid "Incorrect phone number"
|
4346 |
+
msgstr ""
|
4347 |
+
|
4348 |
+
#: ../profile-builder-2.0/features/functions.php:722, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:394
|
4349 |
+
msgid "Save Changes"
|
4350 |
+
msgstr ""
|
4351 |
+
|
4352 |
+
#: ../profile-builder-2.0/features/functions.php:750, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:436
|
4353 |
+
msgid "Content"
|
4354 |
+
msgstr ""
|
4355 |
+
|
4356 |
+
#: ../profile-builder-2.0/features/functions.php:761
|
4357 |
+
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
|
4358 |
+
msgstr ""
|
4359 |
+
|
4360 |
+
#: ../profile-builder-2.0/features/functions.php:765
|
4361 |
+
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
|
4362 |
+
msgstr ""
|
4363 |
+
|
4364 |
+
#: ../profile-builder-2.0/features/functions.php:930
|
4365 |
+
msgid "<br><br>Also, you will be able to visit your site at "
|
4366 |
+
msgstr ""
|
4367 |
+
|
4368 |
+
#: ../profile-builder-2.0/features/functions.php:943
|
4369 |
+
msgid "<br><br>You can visit your site at "
|
4370 |
+
msgstr ""
|
4371 |
+
|
4372 |
+
#: ../profile-builder-2.0/features/functions.php:1029
|
4373 |
+
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4374 |
+
msgstr ""
|
4375 |
+
|
4376 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:124
|
4377 |
+
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4378 |
+
msgstr ""
|
4379 |
+
|
4380 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:136
|
4381 |
+
msgid "Only an administrator can add new users."
|
4382 |
+
msgstr ""
|
4383 |
+
|
4384 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:146
|
4385 |
+
msgid "Users can register themselves or you can manually create users here."
|
4386 |
+
msgstr ""
|
4387 |
+
|
4388 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:146, ../profile-builder-2.0/front-end/class-formbuilder.php:149
|
4389 |
+
msgid "This message is only visible by administrators"
|
4390 |
+
msgstr ""
|
4391 |
+
|
4392 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:149
|
4393 |
+
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4394 |
+
msgstr ""
|
4395 |
+
|
4396 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:169
|
4397 |
+
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4398 |
+
msgstr ""
|
4399 |
+
|
4400 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:169
|
4401 |
+
msgid "Log out of this account."
|
4402 |
+
msgstr ""
|
4403 |
+
|
4404 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:175
|
4405 |
+
msgid "You must be logged in to edit your profile."
|
4406 |
+
msgstr ""
|
4407 |
+
|
4408 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:263, ../profile-builder-2.0/front-end/login.php:321
|
4409 |
+
msgid "You are not allowed to do this."
|
4410 |
+
msgstr ""
|
4411 |
+
|
4412 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:320, ../profile-builder-2.0/front-end/class-formbuilder.php:327
|
4413 |
+
msgid "The account %1s has been successfully created!"
|
4414 |
+
msgstr ""
|
4415 |
+
|
4416 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:323, ../profile-builder-2.0/front-end/class-formbuilder.php:333
|
4417 |
+
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4418 |
+
msgstr ""
|
4419 |
+
|
4420 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:329
|
4421 |
+
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4422 |
+
msgstr ""
|
4423 |
+
|
4424 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:352
|
4425 |
+
msgid "Your profile has been successfully updated!"
|
4426 |
+
msgstr ""
|
4427 |
+
|
4428 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:363
|
4429 |
+
msgid "There was an error in the submitted form"
|
4430 |
+
msgstr ""
|
4431 |
+
|
4432 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:420
|
4433 |
+
msgid "Add User"
|
4434 |
+
msgstr ""
|
4435 |
+
|
4436 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:486
|
4437 |
+
msgid "Send these credentials via email."
|
4438 |
+
msgstr ""
|
4439 |
+
|
4440 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:680
|
4441 |
+
msgid "User to edit:"
|
4442 |
+
msgstr ""
|
4443 |
+
|
4444 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:714
|
4445 |
+
msgid "Something went wrong. Please try again!"
|
4446 |
+
msgstr ""
|
4447 |
+
|
4448 |
+
#: ../profile-builder-2.0/front-end/login.php:150, ../profile-builder-2.0/front-end/login.php:157, ../profile-builder-2.0/front-end/login.php:171, ../profile-builder-2.0/front-end/recover.php:17, ../profile-builder-2.0/front-end/recover.php:249, ../profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
|
4449 |
+
msgid "ERROR"
|
4450 |
+
msgstr ""
|
4451 |
+
|
4452 |
+
#: ../profile-builder-2.0/front-end/login.php:150
|
4453 |
+
msgid "The password you entered is incorrect."
|
4454 |
+
msgstr ""
|
4455 |
+
|
4456 |
+
#: ../profile-builder-2.0/front-end/login.php:151, ../profile-builder-2.0/front-end/login.php:158
|
4457 |
+
msgid "Password Lost and Found."
|
4458 |
+
msgstr ""
|
4459 |
+
|
4460 |
+
#: ../profile-builder-2.0/front-end/login.php:151, ../profile-builder-2.0/front-end/login.php:158
|
4461 |
+
msgid "Lost your password"
|
4462 |
+
msgstr ""
|
4463 |
+
|
4464 |
+
#: ../profile-builder-2.0/front-end/login.php:157
|
4465 |
+
msgid "Invalid username."
|
4466 |
+
msgstr ""
|
4467 |
+
|
4468 |
+
#: ../profile-builder-2.0/front-end/login.php:162, ../profile-builder-2.0/front-end/login.php:166
|
4469 |
+
msgid "username"
|
4470 |
+
msgstr ""
|
4471 |
+
|
4472 |
+
#: ../profile-builder-2.0/front-end/login.php:162
|
4473 |
+
msgid "email"
|
4474 |
+
msgstr ""
|
4475 |
+
|
4476 |
+
#: ../profile-builder-2.0/front-end/login.php:166
|
4477 |
+
msgid "username or email"
|
4478 |
+
msgstr ""
|
4479 |
+
|
4480 |
+
#: ../profile-builder-2.0/front-end/login.php:171
|
4481 |
+
msgid "Both fields are empty."
|
4482 |
+
msgstr ""
|
4483 |
+
|
4484 |
+
#: ../profile-builder-2.0/front-end/login.php:235
|
4485 |
+
msgid "Username or Email"
|
4486 |
+
msgstr ""
|
4487 |
+
|
4488 |
+
#: ../profile-builder-2.0/front-end/login.php:269
|
4489 |
+
msgid "Lost your password?"
|
4490 |
+
msgstr ""
|
4491 |
+
|
4492 |
+
#: ../profile-builder-2.0/front-end/login.php:308, ../profile-builder-2.0/front-end/logout.php:25
|
4493 |
+
msgid "Log out of this account"
|
4494 |
+
msgstr ""
|
4495 |
+
|
4496 |
+
#: ../profile-builder-2.0/front-end/login.php:308
|
4497 |
+
msgid "Log out"
|
4498 |
+
msgstr ""
|
4499 |
+
|
4500 |
+
#: ../profile-builder-2.0/front-end/login.php:309
|
4501 |
+
msgid "You are currently logged in as %1$s. %2$s"
|
4502 |
+
msgstr ""
|
4503 |
+
|
4504 |
+
#: ../profile-builder-2.0/front-end/logout.php:15
|
4505 |
+
msgid "You are currently logged in as %s. "
|
4506 |
+
msgstr ""
|
4507 |
+
|
4508 |
+
#: ../profile-builder-2.0/front-end/logout.php:15
|
4509 |
+
msgid "Log out »"
|
4510 |
+
msgstr ""
|
4511 |
+
|
4512 |
+
#: ../profile-builder-2.0/front-end/recover.php:17
|
4513 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
4514 |
+
msgstr ""
|
4515 |
+
|
4516 |
+
#: ../profile-builder-2.0/front-end/recover.php:95
|
4517 |
+
msgid "Reset Password"
|
4518 |
+
msgstr ""
|
4519 |
+
|
4520 |
+
#: ../profile-builder-2.0/front-end/recover.php:118
|
4521 |
+
msgid "Please enter your email address."
|
4522 |
+
msgstr ""
|
4523 |
+
|
4524 |
+
#: ../profile-builder-2.0/front-end/recover.php:122
|
4525 |
+
msgid "Please enter your username or email address."
|
4526 |
+
msgstr ""
|
4527 |
+
|
4528 |
+
#: ../profile-builder-2.0/front-end/recover.php:123
|
4529 |
+
msgid "Username or E-mail"
|
4530 |
+
msgstr ""
|
4531 |
+
|
4532 |
+
#: ../profile-builder-2.0/front-end/recover.php:126
|
4533 |
+
msgid "You will receive a link to create a new password via email."
|
4534 |
+
msgstr ""
|
4535 |
+
|
4536 |
+
#: ../profile-builder-2.0/front-end/recover.php:139
|
4537 |
+
msgid "Get New Password"
|
4538 |
+
msgstr ""
|
4539 |
+
|
4540 |
+
#: ../profile-builder-2.0/front-end/recover.php:160
|
4541 |
+
msgid "You are already logged in. You can change your password on the edit profile form."
|
4542 |
+
msgstr ""
|
4543 |
+
|
4544 |
+
#: ../profile-builder-2.0/front-end/recover.php:186
|
4545 |
+
msgid "The username entered wasn't found in the database!"
|
4546 |
+
msgstr ""
|
4547 |
+
|
4548 |
+
#: ../profile-builder-2.0/front-end/recover.php:186
|
4549 |
+
msgid "Please check that you entered the correct username."
|
4550 |
+
msgstr ""
|
4551 |
+
|
4552 |
+
#: ../profile-builder-2.0/front-end/recover.php:201
|
4553 |
+
msgid "Check your e-mail for the confirmation link."
|
4554 |
+
msgstr ""
|
4555 |
+
|
4556 |
+
#: ../profile-builder-2.0/front-end/recover.php:208
|
4557 |
+
msgid "The email address entered wasn't found in the database!"
|
4558 |
+
msgstr ""
|
4559 |
+
|
4560 |
+
#: ../profile-builder-2.0/front-end/recover.php:208
|
4561 |
+
msgid "Please check that you entered the correct email address."
|
4562 |
+
msgstr ""
|
4563 |
+
|
4564 |
+
#: ../profile-builder-2.0/front-end/recover.php:236
|
4565 |
+
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
4566 |
+
msgstr ""
|
4567 |
+
|
4568 |
+
#: ../profile-builder-2.0/front-end/recover.php:239
|
4569 |
+
msgid "Password Reset from \"%1$s\""
|
4570 |
+
msgstr ""
|
4571 |
+
|
4572 |
+
#: ../profile-builder-2.0/front-end/recover.php:249
|
4573 |
+
msgid "There was an error while trying to send the activation link to %1$s!"
|
4574 |
+
msgstr ""
|
4575 |
+
|
4576 |
+
#: ../profile-builder-2.0/front-end/recover.php:266, ../profile-builder-2.0/front-end/default-fields/password/password.php:47
|
4577 |
+
msgid "The password must have the minimum length of %s characters"
|
4578 |
+
msgstr ""
|
4579 |
+
|
4580 |
+
#: ../profile-builder-2.0/front-end/recover.php:270, ../profile-builder-2.0/front-end/default-fields/password/password.php:51
|
4581 |
+
msgid "The password must have a minimum strength of %s"
|
4582 |
+
msgstr ""
|
4583 |
+
|
4584 |
+
#: ../profile-builder-2.0/front-end/recover.php:277
|
4585 |
+
msgid "Your password has been successfully changed!"
|
4586 |
+
msgstr ""
|
4587 |
+
|
4588 |
+
#: ../profile-builder-2.0/front-end/recover.php:301
|
4589 |
+
msgid "You have successfully reset your password."
|
4590 |
+
msgstr ""
|
4591 |
+
|
4592 |
+
#: ../profile-builder-2.0/front-end/recover.php:304, ../profile-builder-2.0/front-end/recover.php:318
|
4593 |
+
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
4594 |
+
msgstr ""
|
4595 |
+
|
4596 |
+
#: ../profile-builder-2.0/front-end/recover.php:315
|
4597 |
+
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
4598 |
+
msgstr ""
|
4599 |
+
|
4600 |
+
#: ../profile-builder-2.0/front-end/recover.php:334
|
4601 |
+
msgid "The entered passwords don't match!"
|
4602 |
+
msgstr ""
|
4603 |
+
|
4604 |
+
#: ../profile-builder-2.0/front-end/recover.php:389
|
4605 |
+
msgid "ERROR:"
|
4606 |
+
msgstr ""
|
4607 |
+
|
4608 |
+
#: ../profile-builder-2.0/front-end/recover.php:389
|
4609 |
+
msgid "Invalid key!"
|
4610 |
+
msgstr ""
|
4611 |
+
|
4612 |
+
#: ../profile-builder-2.0/front-end/register.php:56
|
4613 |
+
msgid "Invalid activation key!"
|
4614 |
+
msgstr ""
|
4615 |
+
|
4616 |
+
#: ../profile-builder-2.0/front-end/register.php:60
|
4617 |
+
msgid "This username is now active!"
|
4618 |
+
msgstr ""
|
4619 |
+
|
4620 |
+
#: ../profile-builder-2.0/front-end/register.php:71, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:448
|
4621 |
+
msgid "Could not create user!"
|
4622 |
+
msgstr ""
|
4623 |
+
|
4624 |
+
#: ../profile-builder-2.0/front-end/register.php:74
|
4625 |
+
msgid "This username is already activated!"
|
4626 |
+
msgstr ""
|
4627 |
+
|
4628 |
+
#: ../profile-builder-2.0/front-end/register.php:124
|
4629 |
+
msgid "Your email was successfully confirmed."
|
4630 |
+
msgstr ""
|
4631 |
+
|
4632 |
+
#: ../profile-builder-2.0/front-end/register.php:125, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:648
|
4633 |
+
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4634 |
+
msgstr ""
|
4635 |
+
|
4636 |
+
#: ../profile-builder-2.0/front-end/register.php:153
|
4637 |
+
msgid "There was an error while trying to activate the user."
|
4638 |
+
msgstr ""
|
4639 |
+
|
4640 |
+
#: ../profile-builder-2.0/modules/modules.php:11, ../profile-builder-2.0/modules/modules.php:11, ../profile-builder-2.0/modules/modules.php:58
|
4641 |
+
msgid "Modules"
|
4642 |
+
msgstr ""
|
4643 |
+
|
4644 |
+
#: ../profile-builder-2.0/modules/modules.php:59
|
4645 |
+
msgid "Here you can activate / deactivate available modules for Profile Builder."
|
4646 |
+
msgstr ""
|
4647 |
+
|
4648 |
+
#: ../profile-builder-2.0/modules/modules.php:69
|
4649 |
+
msgid "Name/Description"
|
4650 |
+
msgstr ""
|
4651 |
+
|
4652 |
+
#: ../profile-builder-2.0/modules/modules.php:70
|
4653 |
+
msgid "Status"
|
4654 |
+
msgstr ""
|
4655 |
+
|
4656 |
+
#: ../profile-builder-2.0/modules/modules.php:77, ../profile-builder-2.0/modules/modules.php:84, ../profile-builder-2.0/modules/modules.php:91, ../profile-builder-2.0/modules/modules.php:98, ../profile-builder-2.0/modules/modules.php:105, ../profile-builder-2.0/modules/modules.php:112, ../profile-builder-2.0/modules/modules.php:119
|
4657 |
+
msgid "Active"
|
4658 |
+
msgstr ""
|
4659 |
+
|
4660 |
+
#: ../profile-builder-2.0/modules/modules.php:78, ../profile-builder-2.0/modules/modules.php:85, ../profile-builder-2.0/modules/modules.php:92, ../profile-builder-2.0/modules/modules.php:99, ../profile-builder-2.0/modules/modules.php:106, ../profile-builder-2.0/modules/modules.php:113, ../profile-builder-2.0/modules/modules.php:120
|
4661 |
+
msgid "Inactive"
|
4662 |
+
msgstr ""
|
4663 |
+
|
4664 |
+
#: ../profile-builder-2.0/modules/modules.php:96, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
|
4665 |
+
msgid "Admin Email Customizer"
|
4666 |
+
msgstr ""
|
4667 |
+
|
4668 |
+
#: ../profile-builder-2.0/modules/modules.php:103, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
|
4669 |
+
msgid "User Email Customizer"
|
4670 |
+
msgstr ""
|
4671 |
+
|
4672 |
+
#: ../profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
|
4673 |
+
msgid "Your account has to be confirmed by an administrator before you can log in."
|
4674 |
+
msgstr ""
|
4675 |
+
|
4676 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:14, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:454
|
4677 |
+
msgid "Admin Approval"
|
4678 |
+
msgstr ""
|
4679 |
+
|
4680 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:28, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
|
4681 |
+
msgid "Do you want to"
|
4682 |
+
msgstr ""
|
4683 |
+
|
4684 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:51
|
4685 |
+
msgid "Your session has expired! Please refresh the page and try again"
|
4686 |
+
msgstr ""
|
4687 |
+
|
4688 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:67, ../profile-builder-2.0/features/admin-approval/admin-approval.php:279
|
4689 |
+
msgid "User successfully approved!"
|
4690 |
+
msgstr ""
|
4691 |
+
|
4692 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:77
|
4693 |
+
msgid "User successfully unapproved!"
|
4694 |
+
msgstr ""
|
4695 |
+
|
4696 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:83
|
4697 |
+
msgid "User successfully deleted!"
|
4698 |
+
msgstr ""
|
4699 |
+
|
4700 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:88, ../profile-builder-2.0/features/admin-approval/admin-approval.php:134, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
|
4701 |
+
msgid "You either don't have permission for that action or there was an error!"
|
4702 |
+
msgstr ""
|
4703 |
+
|
4704 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:99
|
4705 |
+
msgid "Your session has expired! Please refresh the page and try again."
|
4706 |
+
msgstr ""
|
4707 |
+
|
4708 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:112
|
4709 |
+
msgid "Users successfully approved!"
|
4710 |
+
msgstr ""
|
4711 |
+
|
4712 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:122
|
4713 |
+
msgid "Users successfully unapproved!"
|
4714 |
+
msgstr ""
|
4715 |
+
|
4716 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:130
|
4717 |
+
msgid "Users successfully deleted!"
|
4718 |
+
msgstr ""
|
4719 |
+
|
4720 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:150
|
4721 |
+
msgid "Your account on %1$s has been approved!"
|
4722 |
+
msgstr ""
|
4723 |
+
|
4724 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:151, ../profile-builder-2.0/features/admin-approval/admin-approval.php:154
|
4725 |
+
msgid "approved"
|
4726 |
+
msgstr ""
|
4727 |
+
|
4728 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:153
|
4729 |
+
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
4730 |
+
msgstr ""
|
4731 |
+
|
4732 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:158
|
4733 |
+
msgid "Your account on %1$s has been unapproved!"
|
4734 |
+
msgstr ""
|
4735 |
+
|
4736 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:159, ../profile-builder-2.0/features/admin-approval/admin-approval.php:162
|
4737 |
+
msgid "unapproved"
|
4738 |
+
msgstr ""
|
4739 |
+
|
4740 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:161
|
4741 |
+
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
4742 |
+
msgstr ""
|
4743 |
+
|
4744 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:192
|
4745 |
+
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
4746 |
+
msgstr ""
|
4747 |
+
|
4748 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:227
|
4749 |
+
msgid "Your account has been successfully created!"
|
4750 |
+
msgstr ""
|
4751 |
+
|
4752 |
+
#: ../profile-builder-2.0/features/admin-approval/admin-approval.php:295
|
4753 |
+
msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
|
4754 |
+
msgstr ""
|
4755 |
+
|
4756 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
|
4757 |
+
msgid "delete this user?"
|
4758 |
+
msgstr ""
|
4759 |
+
|
4760 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
|
4761 |
+
msgid "unapprove this user?"
|
4762 |
+
msgstr ""
|
4763 |
+
|
4764 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:116, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
|
4765 |
+
msgid "Unapprove"
|
4766 |
+
msgstr ""
|
4767 |
+
|
4768 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
|
4769 |
+
msgid "approve this user?"
|
4770 |
+
msgstr ""
|
4771 |
+
|
4772 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:118, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
|
4773 |
+
msgid "Approve"
|
4774 |
+
msgstr ""
|
4775 |
+
|
4776 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:304, ../profile-builder-2.0/modules/user-listing/userlisting.php:781, ../profile-builder-2.0/modules/user-listing/userlisting.php:2276
|
4777 |
+
msgid "Firstname"
|
4778 |
+
msgstr ""
|
4779 |
+
|
4780 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:2277
|
4781 |
+
msgid "Lastname"
|
4782 |
+
msgstr ""
|
4783 |
+
|
4784 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:305, ../profile-builder-2.0/modules/user-listing/userlisting.php:811, ../profile-builder-2.0/modules/user-listing/userlisting.php:2281
|
4785 |
+
msgid "Role"
|
4786 |
+
msgstr ""
|
4787 |
+
|
4788 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:171, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
|
4789 |
+
msgid "Registered"
|
4790 |
+
msgstr ""
|
4791 |
+
|
4792 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
|
4793 |
+
msgid "User-status"
|
4794 |
+
msgstr ""
|
4795 |
+
|
4796 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
|
4797 |
+
msgid "Do you want to bulk approve the selected users?"
|
4798 |
+
msgstr ""
|
4799 |
+
|
4800 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
|
4801 |
+
msgid "Do you want to bulk unapprove the selected users?"
|
4802 |
+
msgstr ""
|
4803 |
+
|
4804 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
|
4805 |
+
msgid "Do you want to bulk delete the selected users?"
|
4806 |
+
msgstr ""
|
4807 |
+
|
4808 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:274, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:279
|
4809 |
+
msgid "Sorry, but you don't have permission to do that!"
|
4810 |
+
msgstr ""
|
4811 |
+
|
4812 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
|
4813 |
+
msgid "Approved"
|
4814 |
+
msgstr ""
|
4815 |
+
|
4816 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
|
4817 |
+
msgid "Unapproved"
|
4818 |
+
msgstr ""
|
4819 |
+
|
4820 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:457, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:455
|
4821 |
+
msgid "All Users"
|
4822 |
+
msgstr ""
|
4823 |
+
|
4824 |
+
#: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
|
4825 |
+
msgid "Conditional Logic"
|
4826 |
+
msgstr ""
|
4827 |
+
|
4828 |
+
#: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
|
4829 |
+
msgid "Conditional Rules"
|
4830 |
+
msgstr ""
|
4831 |
+
|
4832 |
+
#: ../profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
|
4833 |
+
msgid "This field has conditional logic enabled."
|
4834 |
+
msgstr ""
|
4835 |
+
|
4836 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-functions.php:40
|
4837 |
+
msgid "You must be logged in to view this content."
|
4838 |
+
msgstr ""
|
4839 |
+
|
4840 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-functions.php:42
|
4841 |
+
msgid "This content is restricted for your user role."
|
4842 |
+
msgstr ""
|
4843 |
+
|
4844 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:18
|
4845 |
+
msgid "Profile Builder Content Restriction"
|
4846 |
+
msgstr ""
|
4847 |
+
|
4848 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:32
|
4849 |
+
msgid "Display Options"
|
4850 |
+
msgstr ""
|
4851 |
+
|
4852 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:36, ../profile-builder-2.0/features/content-restriction/content-restriction.php:56
|
4853 |
+
msgid "Message"
|
4854 |
+
msgstr ""
|
4855 |
+
|
4856 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:36, ../profile-builder-2.0/features/content-restriction/content-restriction.php:61, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
4857 |
+
msgid "Redirect"
|
4858 |
+
msgstr ""
|
4859 |
+
|
4860 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:41, ../profile-builder-2.0/features/content-restriction/content-restriction.php:51
|
4861 |
+
msgid "Type of Restriction"
|
4862 |
+
msgstr ""
|
4863 |
+
|
4864 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:45
|
4865 |
+
msgid "Settings Default"
|
4866 |
+
msgstr ""
|
4867 |
+
|
4868 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:57
|
4869 |
+
msgid "Display For"
|
4870 |
+
msgstr ""
|
4871 |
+
|
4872 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:81
|
4873 |
+
msgid "Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role."
|
4874 |
+
msgstr ""
|
4875 |
+
|
4876 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:85
|
4877 |
+
msgid "Checking any user role will show this %s only to users that have one of those user roles assigned."
|
4878 |
+
msgstr ""
|
4879 |
+
|
4880 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:92
|
4881 |
+
msgid "Restriction Redirect URL"
|
4882 |
+
msgstr ""
|
4883 |
+
|
4884 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:98
|
4885 |
+
msgid "Enable Custom Redirect URL"
|
4886 |
+
msgstr ""
|
4887 |
+
|
4888 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:102
|
4889 |
+
msgid "Check if you wish to add a custom redirect URL for this %s."
|
4890 |
+
msgstr ""
|
4891 |
+
|
4892 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:109
|
4893 |
+
msgid "Custom Redirect URL"
|
4894 |
+
msgstr ""
|
4895 |
+
|
4896 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:113
|
4897 |
+
msgid "Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly."
|
4898 |
+
msgstr ""
|
4899 |
+
|
4900 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:119
|
4901 |
+
msgid "Restriction Messages"
|
4902 |
+
msgstr ""
|
4903 |
+
|
4904 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:125
|
4905 |
+
msgid "Enable Custom Messages"
|
4906 |
+
msgstr ""
|
4907 |
+
|
4908 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:129
|
4909 |
+
msgid "Check if you wish to add custom messages for this %s."
|
4910 |
+
msgstr ""
|
4911 |
+
|
4912 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:136
|
4913 |
+
msgid "Messages for logged-out users"
|
4914 |
+
msgstr ""
|
4915 |
+
|
4916 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-meta-box.php:139
|
4917 |
+
msgid "Messages for logged-in users"
|
4918 |
+
msgstr ""
|
4919 |
+
|
4920 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:64
|
4921 |
+
msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message."
|
4922 |
+
msgstr ""
|
4923 |
+
|
4924 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:65
|
4925 |
+
msgid "If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content."
|
4926 |
+
msgstr ""
|
4927 |
+
|
4928 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:70, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:68, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:98, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:117, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:142
|
4929 |
+
msgid "Redirect URL"
|
4930 |
+
msgstr ""
|
4931 |
+
|
4932 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:75
|
4933 |
+
msgid "Message for logged-out users"
|
4934 |
+
msgstr ""
|
4935 |
+
|
4936 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:80
|
4937 |
+
msgid "Message for logged-in users"
|
4938 |
+
msgstr ""
|
4939 |
+
|
4940 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:85
|
4941 |
+
msgid "Restricted Posts Preview"
|
4942 |
+
msgstr ""
|
4943 |
+
|
4944 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:100
|
4945 |
+
msgid "Show the first %s words of the post's content"
|
4946 |
+
msgstr ""
|
4947 |
+
|
4948 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:108
|
4949 |
+
msgid "Show the content before the \"more\" tag"
|
4950 |
+
msgstr ""
|
4951 |
+
|
4952 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction.php:112
|
4953 |
+
msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it."
|
4954 |
+
msgstr ""
|
4955 |
+
|
4956 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:92, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:171
|
4957 |
+
msgid "User Meta"
|
4958 |
+
msgstr ""
|
4959 |
+
|
4960 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:92
|
4961 |
+
msgid "show"
|
4962 |
+
msgstr ""
|
4963 |
+
|
4964 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
|
4965 |
+
msgid "delete this user from the _signups table?"
|
4966 |
+
msgstr ""
|
4967 |
+
|
4968 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
|
4969 |
+
msgid "confirm this email yourself?"
|
4970 |
+
msgstr ""
|
4971 |
+
|
4972 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
|
4973 |
+
msgid "Confirm Email"
|
4974 |
+
msgstr ""
|
4975 |
+
|
4976 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:123
|
4977 |
+
msgid "resend the activation link?"
|
4978 |
+
msgstr ""
|
4979 |
+
|
4980 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:123, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:220
|
4981 |
+
msgid "Resend Activation Email"
|
4982 |
+
msgstr ""
|
4983 |
+
|
4984 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:250
|
4985 |
+
msgid "%s couldn't be deleted"
|
4986 |
+
msgstr ""
|
4987 |
+
|
4988 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:254
|
4989 |
+
msgid "All users have been successfully deleted"
|
4990 |
+
msgstr ""
|
4991 |
+
|
4992 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:264
|
4993 |
+
msgid "The selected users have been activated"
|
4994 |
+
msgstr ""
|
4995 |
+
|
4996 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:275
|
4997 |
+
msgid "The selected users have had their activation emails resent"
|
4998 |
+
msgstr ""
|
4999 |
+
|
5000 |
+
#: ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:452, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
|
5001 |
+
msgid "Users with Unconfirmed Email Address"
|
5002 |
+
msgstr ""
|
5003 |
+
|
5004 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
|
5005 |
+
msgid "There was an error performing that action!"
|
5006 |
+
msgstr ""
|
5007 |
+
|
5008 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
|
5009 |
+
msgid "The selected user couldn't be deleted"
|
5010 |
+
msgstr ""
|
5011 |
+
|
5012 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
|
5013 |
+
msgid "Email notification resent to user"
|
5014 |
+
msgstr ""
|
5015 |
+
|
5016 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:404
|
5017 |
+
msgid "[%1$s] Activate %2$s"
|
5018 |
+
msgstr ""
|
5019 |
+
|
5020 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:407
|
5021 |
+
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5022 |
+
msgstr ""
|
5023 |
+
|
5024 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:451
|
5025 |
+
msgid "That username is already activated!"
|
5026 |
+
msgstr ""
|
5027 |
+
|
5028 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:474
|
5029 |
+
msgid "There was an error while trying to activate the user"
|
5030 |
+
msgstr ""
|
5031 |
+
|
5032 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:522, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
|
5033 |
+
msgid "A new subscriber has (been) registered!"
|
5034 |
+
msgstr ""
|
5035 |
+
|
5036 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:525
|
5037 |
+
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
5038 |
+
msgstr ""
|
5039 |
+
|
5040 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:576
|
5041 |
+
msgid "[%1$s] Your new account information"
|
5042 |
+
msgstr ""
|
5043 |
+
|
5044 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:580, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:589, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:493, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:500, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:514
|
5045 |
+
msgid "Your selected password at signup"
|
5046 |
+
msgstr ""
|
5047 |
+
|
5048 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:585
|
5049 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
|
5050 |
+
msgstr ""
|
5051 |
+
|
5052 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:587
|
5053 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
5054 |
+
msgstr ""
|
5055 |
+
|
5056 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:640
|
5057 |
+
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5058 |
+
msgstr ""
|
5059 |
+
|
5060 |
+
#: ../profile-builder-2.0/features/login-widget/login-widget.php:10
|
5061 |
+
msgid "This login widget lets you add a login form in the sidebar."
|
5062 |
+
msgstr ""
|
5063 |
+
|
5064 |
+
#: ../profile-builder-2.0/features/login-widget/login-widget.php:15
|
5065 |
+
msgid "Profile Builder Login Widget"
|
5066 |
+
msgstr ""
|
5067 |
+
|
5068 |
+
#: ../profile-builder-2.0/features/login-widget/login-widget.php:63
|
5069 |
+
msgid "Title:"
|
5070 |
+
msgstr ""
|
5071 |
+
|
5072 |
+
#: ../profile-builder-2.0/features/login-widget/login-widget.php:68
|
5073 |
+
msgid "After login redirect URL (optional):"
|
5074 |
+
msgstr ""
|
5075 |
+
|
5076 |
+
#: ../profile-builder-2.0/features/login-widget/login-widget.php:73
|
5077 |
+
msgid "Register page URL (optional):"
|
5078 |
+
msgstr ""
|
5079 |
+
|
5080 |
+
#: ../profile-builder-2.0/features/login-widget/login-widget.php:78
|
5081 |
+
msgid "Password Recovery page URL (optional):"
|
5082 |
+
msgstr ""
|
5083 |
+
|
5084 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:182
|
5085 |
+
msgid "Capability"
|
5086 |
+
msgstr ""
|
5087 |
+
|
5088 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:183
|
5089 |
+
msgid "You can't delete this capability from your role."
|
5090 |
+
msgstr ""
|
5091 |
+
|
5092 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:246, ../profile-builder-2.0/features/roles-editor/roles-editor.php:247
|
5093 |
+
msgid "Add New Role"
|
5094 |
+
msgstr ""
|
5095 |
+
|
5096 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:248
|
5097 |
+
msgid "Edit Role"
|
5098 |
+
msgstr ""
|
5099 |
+
|
5100 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:249
|
5101 |
+
msgid "New Role"
|
5102 |
+
msgstr ""
|
5103 |
+
|
5104 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:251
|
5105 |
+
msgid "View Role"
|
5106 |
+
msgstr ""
|
5107 |
+
|
5108 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:252
|
5109 |
+
msgid "Search the Roles Editor"
|
5110 |
+
msgstr ""
|
5111 |
+
|
5112 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:253
|
5113 |
+
msgid "No roles found"
|
5114 |
+
msgstr ""
|
5115 |
+
|
5116 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:254
|
5117 |
+
msgid "No roles found in trash"
|
5118 |
+
msgstr ""
|
5119 |
+
|
5120 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:296, ../profile-builder-2.0/features/roles-editor/roles-editor.php:299
|
5121 |
+
msgid "Role updated."
|
5122 |
+
msgstr ""
|
5123 |
+
|
5124 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:297
|
5125 |
+
msgid "Custom field updated."
|
5126 |
+
msgstr ""
|
5127 |
+
|
5128 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:298
|
5129 |
+
msgid "Custom field deleted."
|
5130 |
+
msgstr ""
|
5131 |
+
|
5132 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:301
|
5133 |
+
msgid "Role created."
|
5134 |
+
msgstr ""
|
5135 |
+
|
5136 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:302
|
5137 |
+
msgid "Role saved."
|
5138 |
+
msgstr ""
|
5139 |
+
|
5140 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:303
|
5141 |
+
msgid "Role submitted."
|
5142 |
+
msgstr ""
|
5143 |
+
|
5144 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:304
|
5145 |
+
msgid "Role scheduled for: <strong>%1$s</strong>"
|
5146 |
+
msgstr ""
|
5147 |
+
|
5148 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:305
|
5149 |
+
msgid "Role draft updated."
|
5150 |
+
msgstr ""
|
5151 |
+
|
5152 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:364
|
5153 |
+
msgid "Role Name"
|
5154 |
+
msgstr ""
|
5155 |
+
|
5156 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:365, ../profile-builder-2.0/modules/user-listing/userlisting.php:160
|
5157 |
+
msgid "Role Slug"
|
5158 |
+
msgstr ""
|
5159 |
+
|
5160 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:366
|
5161 |
+
msgid "Capabilities"
|
5162 |
+
msgstr ""
|
5163 |
+
|
5164 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:367
|
5165 |
+
msgid "Users"
|
5166 |
+
msgstr ""
|
5167 |
+
|
5168 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:877
|
5169 |
+
msgid "Clone"
|
5170 |
+
msgstr ""
|
5171 |
+
|
5172 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:884
|
5173 |
+
msgid "You can't delete your role."
|
5174 |
+
msgstr ""
|
5175 |
+
|
5176 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:892
|
5177 |
+
msgid "Change Default"
|
5178 |
+
msgstr ""
|
5179 |
+
|
5180 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:893
|
5181 |
+
msgid "You can't delete the default role. Change it first."
|
5182 |
+
msgstr ""
|
5183 |
+
|
5184 |
+
#: ../profile-builder-2.0/features/roles-editor/roles-editor.php:1116
|
5185 |
+
msgid "Edit User Roles"
|
5186 |
+
msgstr ""
|
5187 |
+
|
5188 |
+
#: ../profile-builder-2.0/features/upgrades/upgrades-functions.php:91, ../profile-builder-2.0/features/upgrades/upgrades-functions.php:134
|
5189 |
+
msgid "The usernames cannot be changed."
|
5190 |
+
msgstr ""
|
5191 |
+
|
5192 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
|
5193 |
+
msgid "After Login"
|
5194 |
+
msgstr ""
|
5195 |
+
|
5196 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
|
5197 |
+
msgid "After Logout"
|
5198 |
+
msgstr ""
|
5199 |
+
|
5200 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
|
5201 |
+
msgid "After Registration"
|
5202 |
+
msgstr ""
|
5203 |
+
|
5204 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:52
|
5205 |
+
msgid "After Edit Profile"
|
5206 |
+
msgstr ""
|
5207 |
+
|
5208 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:53
|
5209 |
+
msgid "After Successful Email Confirmation"
|
5210 |
+
msgstr ""
|
5211 |
+
|
5212 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:54
|
5213 |
+
msgid "After Successful Password Reset"
|
5214 |
+
msgstr ""
|
5215 |
+
|
5216 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
|
5217 |
+
msgid "Dashboard (redirect users from accessing the dashboard)"
|
5218 |
+
msgstr ""
|
5219 |
+
|
5220 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:59
|
5221 |
+
msgid "User ID"
|
5222 |
+
msgstr ""
|
5223 |
+
|
5224 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
|
5225 |
+
msgid "User ID or Username"
|
5226 |
+
msgstr ""
|
5227 |
+
|
5228 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:66
|
5229 |
+
msgid "User ID / Username"
|
5230 |
+
msgstr ""
|
5231 |
+
|
5232 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:66
|
5233 |
+
msgid "Please select and enter the ID or username of your user."
|
5234 |
+
msgstr ""
|
5235 |
+
|
5236 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:67, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:97, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:116, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
|
5237 |
+
msgid "Redirect Type"
|
5238 |
+
msgstr ""
|
5239 |
+
|
5240 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:68, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:98, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:117, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:142
|
5241 |
+
msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
|
5242 |
+
msgstr ""
|
5243 |
+
|
5244 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:75, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:245
|
5245 |
+
msgid "Individual User Redirects"
|
5246 |
+
msgstr ""
|
5247 |
+
|
5248 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:96, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:31
|
5249 |
+
msgid "User Role"
|
5250 |
+
msgstr ""
|
5251 |
+
|
5252 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:96
|
5253 |
+
msgid "Select a user role."
|
5254 |
+
msgstr ""
|
5255 |
+
|
5256 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:105, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:246
|
5257 |
+
msgid "User Role based Redirects"
|
5258 |
+
msgstr ""
|
5259 |
+
|
5260 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:124, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
|
5261 |
+
msgid "Global Redirects"
|
5262 |
+
msgstr ""
|
5263 |
+
|
5264 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:137
|
5265 |
+
msgid "Login ( wp_login.php )"
|
5266 |
+
msgstr ""
|
5267 |
+
|
5268 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
|
5269 |
+
msgid "Register ( wp-login.php?action=register )"
|
5270 |
+
msgstr ""
|
5271 |
+
|
5272 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
|
5273 |
+
msgid "Lost Password ( wp-login.php?action=lostpassword )"
|
5274 |
+
msgstr ""
|
5275 |
+
|
5276 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:140
|
5277 |
+
msgid "Author Archive ( http://sitename.com/author/admin )"
|
5278 |
+
msgstr ""
|
5279 |
+
|
5280 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:149
|
5281 |
+
msgid "Redirect Default WordPress Forms and Pages"
|
5282 |
+
msgstr ""
|
5283 |
+
|
5284 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:161
|
5285 |
+
msgid "How does this work?"
|
5286 |
+
msgstr ""
|
5287 |
+
|
5288 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:183
|
5289 |
+
msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
|
5290 |
+
msgstr ""
|
5291 |
+
|
5292 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:197
|
5293 |
+
msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
|
5294 |
+
msgstr ""
|
5295 |
+
|
5296 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:211, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:225
|
5297 |
+
msgid "<pre>Redirect</pre><pre>URL</pre>"
|
5298 |
+
msgstr ""
|
5299 |
+
|
5300 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
|
5301 |
+
msgid "These redirects happen after a successful action, like registration or after a successful login."
|
5302 |
+
msgstr ""
|
5303 |
+
|
5304 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
|
5305 |
+
msgid "Which redirect happens depends on the following priority:"
|
5306 |
+
msgstr ""
|
5307 |
+
|
5308 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
|
5309 |
+
msgid "Multiple Registration and Edit Profile form settings Redirects"
|
5310 |
+
msgstr ""
|
5311 |
+
|
5312 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
|
5313 |
+
msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
|
5314 |
+
msgstr ""
|
5315 |
+
|
5316 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
|
5317 |
+
msgid "Redirect Default WordPress forms and pages"
|
5318 |
+
msgstr ""
|
5319 |
+
|
5320 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:252
|
5321 |
+
msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
|
5322 |
+
msgstr ""
|
5323 |
+
|
5324 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
|
5325 |
+
msgid "Available tags for dynamic URLs"
|
5326 |
+
msgstr ""
|
5327 |
+
|
5328 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
|
5329 |
+
msgid "You use the following tags in your URLs to redirect users to various pages."
|
5330 |
+
msgstr ""
|
5331 |
+
|
5332 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
|
5333 |
+
msgid "generates a url of the current website homepage."
|
5334 |
+
msgstr ""
|
5335 |
+
|
5336 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:258
|
5337 |
+
msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
|
5338 |
+
msgstr ""
|
5339 |
+
|
5340 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:259
|
5341 |
+
msgid "the ID of the user"
|
5342 |
+
msgstr ""
|
5343 |
+
|
5344 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:260
|
5345 |
+
msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
|
5346 |
+
msgstr ""
|
5347 |
+
|
5348 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:261
|
5349 |
+
msgid "the URL of the previously visited page"
|
5350 |
+
msgstr ""
|
5351 |
+
|
5352 |
+
#: ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:344, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:350, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:356
|
5353 |
+
msgid "You can't add duplicate redirects!"
|
5354 |
+
msgstr ""
|
5355 |
+
|
5356 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
|
5357 |
+
msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
|
5358 |
+
msgstr ""
|
5359 |
+
|
5360 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
|
5361 |
+
msgid "Valid tags {{reply_to}} and {{site_name}}"
|
5362 |
+
msgstr ""
|
5363 |
+
|
5364 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
|
5365 |
+
msgid "From (name)"
|
5366 |
+
msgstr ""
|
5367 |
+
|
5368 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
|
5369 |
+
msgid "From (reply-to email)"
|
5370 |
+
msgstr ""
|
5371 |
+
|
5372 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
|
5373 |
+
msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
|
5374 |
+
msgstr ""
|
5375 |
+
|
5376 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
|
5377 |
+
msgid "Common Settings"
|
5378 |
+
msgstr ""
|
5379 |
+
|
5380 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
|
5381 |
+
msgid ""
|
5382 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
5383 |
+
"<p>Username:{{username}}</p>\n"
|
5384 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
5385 |
+
""
|
5386 |
+
msgstr ""
|
5387 |
+
|
5388 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:65, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:89, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:113, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:68, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:92, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:117, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:141, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:166, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:191, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:216, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:243
|
5389 |
+
msgid "Email Subject"
|
5390 |
+
msgstr ""
|
5391 |
+
|
5392 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:80
|
5393 |
+
msgid "Default Registration & Registration with Email Confirmation"
|
5394 |
+
msgstr ""
|
5395 |
+
|
5396 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:83
|
5397 |
+
msgid ""
|
5398 |
+
"<p>New subscriber on {{site_name}}.</p>\n"
|
5399 |
+
"<p>Username:{{username}}</p>\n"
|
5400 |
+
"<p>E-mail:{{user_email}}</p>\n"
|
5401 |
+
"<p>The Admin Approval feature was activated at the time of registration,\n"
|
5402 |
+
"so please remember that you need to approve this user before he/she can log in!</p>"
|
5403 |
+
msgstr ""
|
5404 |
+
|
5405 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:104, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
|
5406 |
+
msgid "Registration with Admin Approval"
|
5407 |
+
msgstr ""
|
5408 |
+
|
5409 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:107
|
5410 |
+
msgid ""
|
5411 |
+
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
5412 |
+
"<p>His/her new password is: {{password}}</p>\n"
|
5413 |
+
""
|
5414 |
+
msgstr ""
|
5415 |
+
|
5416 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:128
|
5417 |
+
msgid "Admin Notification for User Password Reset"
|
5418 |
+
msgstr ""
|
5419 |
+
|
5420 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:7
|
5421 |
+
msgid "Available Tags"
|
5422 |
+
msgstr ""
|
5423 |
+
|
5424 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:11, ../profile-builder-2.0/modules/user-listing/userlisting.php:212
|
5425 |
+
msgid "User Fields Tags"
|
5426 |
+
msgstr ""
|
5427 |
+
|
5428 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:21
|
5429 |
+
msgid "Site Url"
|
5430 |
+
msgstr ""
|
5431 |
+
|
5432 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:22
|
5433 |
+
msgid "Site Name"
|
5434 |
+
msgstr ""
|
5435 |
+
|
5436 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:25, ../profile-builder-2.0/modules/user-listing/userlisting.php:169
|
5437 |
+
msgid "User Id"
|
5438 |
+
msgstr ""
|
5439 |
+
|
5440 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:32
|
5441 |
+
msgid "User Role Label"
|
5442 |
+
msgstr ""
|
5443 |
+
|
5444 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:34
|
5445 |
+
msgid "Reply To"
|
5446 |
+
msgstr ""
|
5447 |
+
|
5448 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:37, ../profile-builder-2.0/modules/user-listing/userlisting.php:127
|
5449 |
+
msgid "Blog URL"
|
5450 |
+
msgstr ""
|
5451 |
+
|
5452 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:41
|
5453 |
+
msgid "Activation Key"
|
5454 |
+
msgstr ""
|
5455 |
+
|
5456 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:42
|
5457 |
+
msgid "Activation Url"
|
5458 |
+
msgstr ""
|
5459 |
+
|
5460 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:43
|
5461 |
+
msgid "Activation Link"
|
5462 |
+
msgstr ""
|
5463 |
+
|
5464 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:47
|
5465 |
+
msgid "Reset Key"
|
5466 |
+
msgstr ""
|
5467 |
+
|
5468 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:48
|
5469 |
+
msgid "Reset Url"
|
5470 |
+
msgstr ""
|
5471 |
+
|
5472 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:49
|
5473 |
+
msgid "Reset Link"
|
5474 |
+
msgstr ""
|
5475 |
+
|
5476 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:53
|
5477 |
+
msgid "Approve User Url"
|
5478 |
+
msgstr ""
|
5479 |
+
|
5480 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:54
|
5481 |
+
msgid "Approve User Link"
|
5482 |
+
msgstr ""
|
5483 |
+
|
5484 |
+
#: ../profile-builder-2.0/modules/email-customizer/email-customizer.php:485
|
5485 |
+
msgid "The users selected password at signup"
|
5486 |
+
msgstr ""
|
5487 |
+
|
5488 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
|
5489 |
+
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
5490 |
+
msgstr ""
|
5491 |
+
|
5492 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
|
5493 |
+
msgid ""
|
5494 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
5495 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
5496 |
+
""
|
5497 |
+
msgstr ""
|
5498 |
+
|
5499 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:88
|
5500 |
+
msgid ""
|
5501 |
+
"<p>To activate your user, please click the following link:<br/>\n"
|
5502 |
+
"{{{activation_link}}}</p>\n"
|
5503 |
+
"<p>After you activate, you will receive another email with your credentials.</p>\n"
|
5504 |
+
""
|
5505 |
+
msgstr ""
|
5506 |
+
|
5507 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:96
|
5508 |
+
msgid "[{{site_name}}] Activate {{username}}"
|
5509 |
+
msgstr ""
|
5510 |
+
|
5511 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:107
|
5512 |
+
msgid "Registration with Email Confirmation"
|
5513 |
+
msgstr ""
|
5514 |
+
|
5515 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:113
|
5516 |
+
msgid ""
|
5517 |
+
"<h3>Welcome to {{site_name}}!</h3>\n"
|
5518 |
+
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
5519 |
+
"<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
|
5520 |
+
""
|
5521 |
+
msgstr ""
|
5522 |
+
|
5523 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:121
|
5524 |
+
msgid "A new account has been created for you on {{site_name}}"
|
5525 |
+
msgstr ""
|
5526 |
+
|
5527 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:137
|
5528 |
+
msgid ""
|
5529 |
+
"<h3>Good News!</h3>\n"
|
5530 |
+
"<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
|
5531 |
+
""
|
5532 |
+
msgstr ""
|
5533 |
+
|
5534 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:145
|
5535 |
+
msgid "Your account on {{site_name}} has been approved!"
|
5536 |
+
msgstr ""
|
5537 |
+
|
5538 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:156
|
5539 |
+
msgid "User Approval Notification"
|
5540 |
+
msgstr ""
|
5541 |
+
|
5542 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:161
|
5543 |
+
msgid ""
|
5544 |
+
"<h3>Hello,</h3>\n"
|
5545 |
+
"<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
|
5546 |
+
""
|
5547 |
+
msgstr ""
|
5548 |
+
|
5549 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
|
5550 |
+
msgid "Your account on {{site_name}} has been unapproved!"
|
5551 |
+
msgstr ""
|
5552 |
+
|
5553 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:181
|
5554 |
+
msgid "Unapproved User Notification"
|
5555 |
+
msgstr ""
|
5556 |
+
|
5557 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
|
5558 |
+
msgid ""
|
5559 |
+
"<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
|
5560 |
+
"Username: {{username}}</p>\n"
|
5561 |
+
"<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
|
5562 |
+
"<p>To reset your password, visit the following address:<br/>\n"
|
5563 |
+
"{{{reset_link}}}</p>\n"
|
5564 |
+
""
|
5565 |
+
msgstr ""
|
5566 |
+
|
5567 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:195
|
5568 |
+
msgid "[{{site_name}}] Password Reset"
|
5569 |
+
msgstr ""
|
5570 |
+
|
5571 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:206
|
5572 |
+
msgid "Password Reset Email"
|
5573 |
+
msgstr ""
|
5574 |
+
|
5575 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:212
|
5576 |
+
msgid ""
|
5577 |
+
"<p>You have successfully reset your password.</p>\n"
|
5578 |
+
""
|
5579 |
+
msgstr ""
|
5580 |
+
|
5581 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:220
|
5582 |
+
msgid "[{{site_name}}] Password Reset Successfully"
|
5583 |
+
msgstr ""
|
5584 |
+
|
5585 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:231
|
5586 |
+
msgid "Password Reset Success Email"
|
5587 |
+
msgstr ""
|
5588 |
+
|
5589 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:239
|
5590 |
+
msgid ""
|
5591 |
+
"<h3>Hi {{username}},</h3>\n"
|
5592 |
+
"<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
|
5593 |
+
"<p>If you did not change your email, please contact the Site Administrator at %s</p>\n"
|
5594 |
+
"<p>This email has been sent to {{user_email}}</p>\n"
|
5595 |
+
"<p>Regards,<br>\n"
|
5596 |
+
"All at {{site_name}}<br>\n"
|
5597 |
+
"<a href=\"{{site_url}}\">{{site_url}}</a></p>"
|
5598 |
+
msgstr ""
|
5599 |
+
|
5600 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:247
|
5601 |
+
msgid "[{{site_name}}] Notice of Email Change"
|
5602 |
+
msgstr ""
|
5603 |
+
|
5604 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:258
|
5605 |
+
msgid "Changed Email Address Notification"
|
5606 |
+
msgstr ""
|
5607 |
+
|
5608 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
|
5609 |
+
msgid "Edit-profile Form"
|
5610 |
+
msgstr ""
|
5611 |
+
|
5612 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:13, ../profile-builder-2.0/modules/user-listing/userlisting.php:13
|
5613 |
+
msgid "Add New"
|
5614 |
+
msgstr ""
|
5615 |
+
|
5616 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
|
5617 |
+
msgid "Add new Edit-profile Form"
|
5618 |
+
msgstr ""
|
5619 |
+
|
5620 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
|
5621 |
+
msgid "Edit the Edit-profile Forms"
|
5622 |
+
msgstr ""
|
5623 |
+
|
5624 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
|
5625 |
+
msgid "New Edit-profile Form"
|
5626 |
+
msgstr ""
|
5627 |
+
|
5628 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
|
5629 |
+
msgid "Edit-profile Forms"
|
5630 |
+
msgstr ""
|
5631 |
+
|
5632 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
|
5633 |
+
msgid "View the Edit-profile Form"
|
5634 |
+
msgstr ""
|
5635 |
+
|
5636 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
|
5637 |
+
msgid "Search the Edit-profile Forms"
|
5638 |
+
msgstr ""
|
5639 |
+
|
5640 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
|
5641 |
+
msgid "No Edit-profile Form found"
|
5642 |
+
msgstr ""
|
5643 |
+
|
5644 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
|
5645 |
+
msgid "No Edit-profile Forms found in trash"
|
5646 |
+
msgstr ""
|
5647 |
+
|
5648 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:2167
|
5649 |
+
msgid "Shortcode"
|
5650 |
+
msgstr ""
|
5651 |
+
|
5652 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:2188
|
5653 |
+
msgid "(no title)"
|
5654 |
+
msgstr ""
|
5655 |
+
|
5656 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:2208
|
5657 |
+
msgid "The shortcode will be available after you publish this form."
|
5658 |
+
msgstr ""
|
5659 |
+
|
5660 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:2210
|
5661 |
+
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5662 |
+
msgstr ""
|
5663 |
+
|
5664 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:2214
|
5665 |
+
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
5666 |
+
msgstr ""
|
5667 |
+
|
5668 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:2247
|
5669 |
+
msgid "Form Shortcode"
|
5670 |
+
msgstr ""
|
5671 |
+
|
5672 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
5673 |
+
msgid "Whether to redirect the user to a specific page or not"
|
5674 |
+
msgstr ""
|
5675 |
+
|
5676 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:231
|
5677 |
+
msgid "Display Messages"
|
5678 |
+
msgstr ""
|
5679 |
+
|
5680 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:231
|
5681 |
+
msgid "Allowed time to display any success messages (in seconds)"
|
5682 |
+
msgstr ""
|
5683 |
+
|
5684 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:232
|
5685 |
+
msgid "URL"
|
5686 |
+
msgstr ""
|
5687 |
+
|
5688 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
|
5689 |
+
msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
|
5690 |
+
msgstr ""
|
5691 |
+
|
5692 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
|
5693 |
+
msgid "After Profile Update..."
|
5694 |
+
msgstr ""
|
5695 |
+
|
5696 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:262
|
5697 |
+
msgid "Add New Field to the List"
|
5698 |
+
msgstr ""
|
5699 |
+
|
5700 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
5701 |
+
msgid "Choose one of the supported fields you manage <a href=\"%s\">here</a>"
|
5702 |
+
msgstr ""
|
5703 |
+
|
5704 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
|
5705 |
+
msgid "This form is empty."
|
5706 |
+
msgstr ""
|
5707 |
+
|
5708 |
+
#: ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
|
5709 |
+
msgid "You need to specify the title of the form before creating it"
|
5710 |
+
msgstr ""
|
5711 |
+
|
5712 |
+
#: ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
5713 |
+
msgid "<pre>Title (Type)</pre>"
|
5714 |
+
msgstr ""
|
5715 |
+
|
5716 |
+
#: ../profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
5717 |
+
msgid "Delete all items"
|
5718 |
+
msgstr ""
|
5719 |
+
|
5720 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:11, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:12
|
5721 |
+
msgid "Registration Form"
|
5722 |
+
msgstr ""
|
5723 |
+
|
5724 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:14
|
5725 |
+
msgid "Add new Registration Form"
|
5726 |
+
msgstr ""
|
5727 |
+
|
5728 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:15
|
5729 |
+
msgid "Edit the Registration Forms"
|
5730 |
+
msgstr ""
|
5731 |
+
|
5732 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:16
|
5733 |
+
msgid "New Registration Form"
|
5734 |
+
msgstr ""
|
5735 |
+
|
5736 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:17, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:23
|
5737 |
+
msgid "Registration Forms"
|
5738 |
+
msgstr ""
|
5739 |
+
|
5740 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:18
|
5741 |
+
msgid "View the Registration Form"
|
5742 |
+
msgstr ""
|
5743 |
+
|
5744 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:19
|
5745 |
+
msgid "Search the Registration Forms"
|
5746 |
+
msgstr ""
|
5747 |
+
|
5748 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:20
|
5749 |
+
msgid "No Registration Form found"
|
5750 |
+
msgstr ""
|
5751 |
+
|
5752 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:21
|
5753 |
+
msgid "No Registration Forms found in trash"
|
5754 |
+
msgstr ""
|
5755 |
+
|
5756 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:219
|
5757 |
+
msgid "Default Role"
|
5758 |
+
msgstr ""
|
5759 |
+
|
5760 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:228
|
5761 |
+
msgid "Set Role"
|
5762 |
+
msgstr ""
|
5763 |
+
|
5764 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:228
|
5765 |
+
msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
|
5766 |
+
msgstr ""
|
5767 |
+
|
5768 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229
|
5769 |
+
msgid "Automatically Log In"
|
5770 |
+
msgstr ""
|
5771 |
+
|
5772 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229
|
5773 |
+
msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
|
5774 |
+
msgstr ""
|
5775 |
+
|
5776 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:232
|
5777 |
+
msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
|
5778 |
+
msgstr ""
|
5779 |
+
|
5780 |
+
#: ../profile-builder-2.0/modules/multiple-forms/register-forms.php:238
|
5781 |
+
msgid "After Registration..."
|
5782 |
+
msgstr ""
|
5783 |
+
|
5784 |
+
#: ../profile-builder-2.0/modules/repeater-field/repeater-field.php:267
|
5785 |
+
msgid "Are you sure you want to delete this?"
|
5786 |
+
msgstr ""
|
5787 |
+
|
5788 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:14
|
5789 |
+
msgid "Add new User Listing"
|
5790 |
+
msgstr ""
|
5791 |
+
|
5792 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:15
|
5793 |
+
msgid "Edit the User Listing"
|
5794 |
+
msgstr ""
|
5795 |
+
|
5796 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:16
|
5797 |
+
msgid "New User Listing"
|
5798 |
+
msgstr ""
|
5799 |
+
|
5800 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:18
|
5801 |
+
msgid "View the User Listing"
|
5802 |
+
msgstr ""
|
5803 |
+
|
5804 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:19
|
5805 |
+
msgid "Search the User Listing"
|
5806 |
+
msgstr ""
|
5807 |
+
|
5808 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:20
|
5809 |
+
msgid "No User Listing found"
|
5810 |
+
msgstr ""
|
5811 |
+
|
5812 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:21
|
5813 |
+
msgid "No User Listing found in trash"
|
5814 |
+
msgstr ""
|
5815 |
+
|
5816 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:114
|
5817 |
+
msgid "Display name as"
|
5818 |
+
msgstr ""
|
5819 |
+
|
5820 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:2275
|
5821 |
+
msgid "Registration Date"
|
5822 |
+
msgstr ""
|
5823 |
+
|
5824 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:2280
|
5825 |
+
msgid "Number of Posts"
|
5826 |
+
msgstr ""
|
5827 |
+
|
5828 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:166
|
5829 |
+
msgid "More Info"
|
5830 |
+
msgstr ""
|
5831 |
+
|
5832 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:167
|
5833 |
+
msgid "More Info Url"
|
5834 |
+
msgstr ""
|
5835 |
+
|
5836 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:168
|
5837 |
+
msgid "Avatar or Gravatar"
|
5838 |
+
msgstr ""
|
5839 |
+
|
5840 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:170
|
5841 |
+
msgid "User Nicename"
|
5842 |
+
msgstr ""
|
5843 |
+
|
5844 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:218
|
5845 |
+
msgid "Sort Tags"
|
5846 |
+
msgstr ""
|
5847 |
+
|
5848 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:222, ../profile-builder-2.0/modules/user-listing/userlisting.php:253
|
5849 |
+
msgid "Extra Functions"
|
5850 |
+
msgstr ""
|
5851 |
+
|
5852 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:225
|
5853 |
+
msgid "Pagination"
|
5854 |
+
msgstr ""
|
5855 |
+
|
5856 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:226
|
5857 |
+
msgid "Search all Fields"
|
5858 |
+
msgstr ""
|
5859 |
+
|
5860 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2362
|
5861 |
+
msgid "Faceted Menus"
|
5862 |
+
msgstr ""
|
5863 |
+
|
5864 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:228
|
5865 |
+
msgid "User Count"
|
5866 |
+
msgstr ""
|
5867 |
+
|
5868 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:255
|
5869 |
+
msgid "Go Back Link"
|
5870 |
+
msgstr ""
|
5871 |
+
|
5872 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:273
|
5873 |
+
msgid "All-userlisting Template"
|
5874 |
+
msgstr ""
|
5875 |
+
|
5876 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:276
|
5877 |
+
msgid "Single-userlisting Template"
|
5878 |
+
msgstr ""
|
5879 |
+
|
5880 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:302
|
5881 |
+
msgid "Avatar"
|
5882 |
+
msgstr ""
|
5883 |
+
|
5884 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:306, ../profile-builder-2.0/modules/user-listing/userlisting.php:796
|
5885 |
+
msgid "Posts"
|
5886 |
+
msgstr ""
|
5887 |
+
|
5888 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:307, ../profile-builder-2.0/modules/user-listing/userlisting.php:778
|
5889 |
+
msgid "Sign-up Date"
|
5890 |
+
msgstr ""
|
5891 |
+
|
5892 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:308
|
5893 |
+
msgid "More"
|
5894 |
+
msgstr ""
|
5895 |
+
|
5896 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:402
|
5897 |
+
msgid "You do not have permission to view this user list."
|
5898 |
+
msgstr ""
|
5899 |
+
|
5900 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:415
|
5901 |
+
msgid "You do not have the required user role to view this user list."
|
5902 |
+
msgstr ""
|
5903 |
+
|
5904 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:439
|
5905 |
+
msgid "User not found"
|
5906 |
+
msgstr ""
|
5907 |
+
|
5908 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:772
|
5909 |
+
msgid "First/Lastname"
|
5910 |
+
msgstr ""
|
5911 |
+
|
5912 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:787, ../profile-builder-2.0/modules/user-listing/userlisting.php:2278
|
5913 |
+
msgid "Display Name"
|
5914 |
+
msgstr ""
|
5915 |
+
|
5916 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:2285
|
5917 |
+
msgid "Aim"
|
5918 |
+
msgstr ""
|
5919 |
+
|
5920 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:2286
|
5921 |
+
msgid "Yim"
|
5922 |
+
msgstr ""
|
5923 |
+
|
5924 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:805, ../profile-builder-2.0/modules/user-listing/userlisting.php:2287
|
5925 |
+
msgid "Jabber"
|
5926 |
+
msgstr ""
|
5927 |
+
|
5928 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1077, ../profile-builder-2.0/modules/user-listing/userlisting.php:1537, ../profile-builder-2.0/modules/user-listing/userlisting.php:2005, ../profile-builder-2.0/modules/user-listing/userlisting.php:2482
|
5929 |
+
msgid "Search Users by All Fields"
|
5930 |
+
msgstr ""
|
5931 |
+
|
5932 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1342
|
5933 |
+
msgid "Click here to see more information about this user"
|
5934 |
+
msgstr ""
|
5935 |
+
|
5936 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1342, ../profile-builder-2.0/modules/user-listing/userlisting.php:1342
|
5937 |
+
msgid "More..."
|
5938 |
+
msgstr ""
|
5939 |
+
|
5940 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1345
|
5941 |
+
msgid "Click here to see more information about this user."
|
5942 |
+
msgstr ""
|
5943 |
+
|
5944 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1372
|
5945 |
+
msgid "View Map"
|
5946 |
+
msgstr ""
|
5947 |
+
|
5948 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1491, ../profile-builder-2.0/modules/user-listing/userlisting.php:1494
|
5949 |
+
msgid "Click here to go back"
|
5950 |
+
msgstr ""
|
5951 |
+
|
5952 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1491, ../profile-builder-2.0/modules/user-listing/userlisting.php:1491
|
5953 |
+
msgid "Back"
|
5954 |
+
msgstr ""
|
5955 |
+
|
5956 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1524
|
5957 |
+
msgid "«« First"
|
5958 |
+
msgstr ""
|
5959 |
+
|
5960 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1525
|
5961 |
+
msgid "« Prev"
|
5962 |
+
msgstr ""
|
5963 |
+
|
5964 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1526
|
5965 |
+
msgid "Next » "
|
5966 |
+
msgstr ""
|
5967 |
+
|
5968 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1527
|
5969 |
+
msgid "Last »»"
|
5970 |
+
msgstr ""
|
5971 |
+
|
5972 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1556
|
5973 |
+
msgid "You don't have any pagination settings on this userlisting!"
|
5974 |
+
msgstr ""
|
5975 |
+
|
5976 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1605
|
5977 |
+
msgid "Show All"
|
5978 |
+
msgstr ""
|
5979 |
+
|
5980 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1673
|
5981 |
+
msgid "Choose..."
|
5982 |
+
msgstr ""
|
5983 |
+
|
5984 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1762
|
5985 |
+
msgid "No options available"
|
5986 |
+
msgstr ""
|
5987 |
+
|
5988 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1913
|
5989 |
+
msgid "Remove All Filters"
|
5990 |
+
msgstr ""
|
5991 |
+
|
5992 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2022
|
5993 |
+
msgid "Search"
|
5994 |
+
msgstr ""
|
5995 |
+
|
5996 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2023
|
5997 |
+
msgid "Clear Results"
|
5998 |
+
msgstr ""
|
5999 |
+
|
6000 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2217, ../profile-builder-2.0/modules/user-listing/userlisting.php:2221
|
6001 |
+
msgid "Extra shortcode parameters"
|
6002 |
+
msgstr ""
|
6003 |
+
|
6004 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2219
|
6005 |
+
msgid "View all extra shortcode parameters"
|
6006 |
+
msgstr ""
|
6007 |
+
|
6008 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2224
|
6009 |
+
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6010 |
+
msgstr ""
|
6011 |
+
|
6012 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2225
|
6013 |
+
msgid "Example:"
|
6014 |
+
msgstr ""
|
6015 |
+
|
6016 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2227
|
6017 |
+
msgid "Remember though, that the field-value combination must exist in the database."
|
6018 |
+
msgstr ""
|
6019 |
+
|
6020 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2233
|
6021 |
+
msgid "displays only the users that you specified the user_id for"
|
6022 |
+
msgstr ""
|
6023 |
+
|
6024 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2239
|
6025 |
+
msgid "displays all users except the ones you specified the user_id for"
|
6026 |
+
msgstr ""
|
6027 |
+
|
6028 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2302
|
6029 |
+
msgid "Random (very slow on large databases > 10K user)"
|
6030 |
+
msgstr ""
|
6031 |
+
|
6032 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2305
|
6033 |
+
msgid "Ascending"
|
6034 |
+
msgstr ""
|
6035 |
+
|
6036 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2306
|
6037 |
+
msgid "Descending"
|
6038 |
+
msgstr ""
|
6039 |
+
|
6040 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
|
6041 |
+
msgid "Roles to Display"
|
6042 |
+
msgstr ""
|
6043 |
+
|
6044 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
|
6045 |
+
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6046 |
+
msgstr ""
|
6047 |
+
|
6048 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
|
6049 |
+
msgid "Number of Users/Page"
|
6050 |
+
msgstr ""
|
6051 |
+
|
6052 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
|
6053 |
+
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6054 |
+
msgstr ""
|
6055 |
+
|
6056 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
|
6057 |
+
msgid "Default Sorting Criteria"
|
6058 |
+
msgstr ""
|
6059 |
+
|
6060 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
|
6061 |
+
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6062 |
+
msgstr ""
|
6063 |
+
|
6064 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
|
6065 |
+
msgid "Default Sorting Order"
|
6066 |
+
msgstr ""
|
6067 |
+
|
6068 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
|
6069 |
+
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6070 |
+
msgstr ""
|
6071 |
+
|
6072 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
|
6073 |
+
msgid "Avatar Size (All-userlisting)"
|
6074 |
+
msgstr ""
|
6075 |
+
|
6076 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
|
6077 |
+
msgid "Set the avatar size on the all-userlisting only"
|
6078 |
+
msgstr ""
|
6079 |
+
|
6080 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
|
6081 |
+
msgid "Avatar Size (Single-userlisting)"
|
6082 |
+
msgstr ""
|
6083 |
+
|
6084 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
|
6085 |
+
msgid "Set the avatar size on the single-userlisting only"
|
6086 |
+
msgstr ""
|
6087 |
+
|
6088 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2320
|
6089 |
+
msgid "Visible only to logged in users?"
|
6090 |
+
msgstr ""
|
6091 |
+
|
6092 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2320
|
6093 |
+
msgid "The userlisting will only be visible only to the logged in users"
|
6094 |
+
msgstr ""
|
6095 |
+
|
6096 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2321
|
6097 |
+
msgid "Visible to following Roles"
|
6098 |
+
msgstr ""
|
6099 |
+
|
6100 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2321
|
6101 |
+
msgid "The userlisting will only be visible to the following roles"
|
6102 |
+
msgstr ""
|
6103 |
+
|
6104 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2327
|
6105 |
+
msgid "Userlisting Settings"
|
6106 |
+
msgstr ""
|
6107 |
+
|
6108 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2352
|
6109 |
+
msgid "Label"
|
6110 |
+
msgstr ""
|
6111 |
+
|
6112 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2352
|
6113 |
+
msgid "Choose the facet name that appears on the frontend"
|
6114 |
+
msgstr ""
|
6115 |
+
|
6116 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
|
6117 |
+
msgid "Facet Type"
|
6118 |
+
msgstr ""
|
6119 |
+
|
6120 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
|
6121 |
+
msgid "Choose the facet menu type"
|
6122 |
+
msgstr ""
|
6123 |
+
|
6124 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
|
6125 |
+
msgid "Facet Meta"
|
6126 |
+
msgstr ""
|
6127 |
+
|
6128 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
|
6129 |
+
msgid "Choose the meta field for the facet menu"
|
6130 |
+
msgstr ""
|
6131 |
+
|
6132 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
|
6133 |
+
msgid "Behaviour"
|
6134 |
+
msgstr ""
|
6135 |
+
|
6136 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
|
6137 |
+
msgid "Narrow the results"
|
6138 |
+
msgstr ""
|
6139 |
+
|
6140 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
|
6141 |
+
msgid "Expand the results"
|
6142 |
+
msgstr ""
|
6143 |
+
|
6144 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
|
6145 |
+
msgid "Choose how multiple selections affect the results"
|
6146 |
+
msgstr ""
|
6147 |
+
|
6148 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2356
|
6149 |
+
msgid "Visible choices"
|
6150 |
+
msgstr ""
|
6151 |
+
|
6152 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2356
|
6153 |
+
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6154 |
+
msgstr ""
|
6155 |
+
|
6156 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2381
|
6157 |
+
msgid "Search Fields"
|
6158 |
+
msgstr ""
|
6159 |
+
|
6160 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2381
|
6161 |
+
msgid "Choose the fields in which the Search Field will look in"
|
6162 |
+
msgstr ""
|
6163 |
+
|
6164 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2386
|
6165 |
+
msgid "Search Settings"
|
6166 |
+
msgstr ""
|
6167 |
+
|
6168 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2458
|
6169 |
+
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6170 |
+
msgstr ""
|
6171 |
+
|
6172 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2458
|
6173 |
+
msgid "You can find it in the Profile Builder menu."
|
6174 |
+
msgstr ""
|
6175 |
+
|
6176 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2621
|
6177 |
+
msgid "No results found!"
|
6178 |
+
msgstr ""
|
6179 |
+
|
6180 |
+
#: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:541, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:534
|
6181 |
+
msgid "Delete this item"
|
6182 |
+
msgstr ""
|
6183 |
+
|
6184 |
+
#: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:1286
|
6185 |
+
msgid "Syncronize WCK"
|
6186 |
+
msgstr ""
|
6187 |
+
|
6188 |
+
#: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:1298
|
6189 |
+
msgid "Syncronize WCK Translation"
|
6190 |
+
msgstr ""
|
6191 |
+
|
6192 |
+
#: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
|
6193 |
+
msgid "Yes, I'd like to create a new site"
|
6194 |
+
msgstr ""
|
6195 |
+
|
6196 |
+
#: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
|
6197 |
+
msgid "Your site url will look like this:<br>"
|
6198 |
+
msgstr ""
|
6199 |
+
|
6200 |
+
#: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
|
6201 |
+
msgid "Site URL slug"
|
6202 |
+
msgstr ""
|
6203 |
+
|
6204 |
+
#: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
|
6205 |
+
msgid "Site Title"
|
6206 |
+
msgstr ""
|
6207 |
+
|
6208 |
+
#: ../profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
|
6209 |
+
msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
|
6210 |
+
msgstr ""
|
6211 |
+
|
6212 |
+
#: ../profile-builder-2.0/front-end/default-fields/email/email.php:51
|
6213 |
+
msgid "You must enter a valid email address."
|
6214 |
+
msgstr ""
|
6215 |
+
|
6216 |
+
#: ../profile-builder-2.0/front-end/default-fields/email/email.php:60, ../profile-builder-2.0/front-end/default-fields/email/email.php:67
|
6217 |
+
msgid "This email is already reserved to be used soon."
|
6218 |
+
msgstr ""
|
6219 |
+
|
6220 |
+
#: ../profile-builder-2.0/front-end/default-fields/email/email.php:60, ../profile-builder-2.0/front-end/default-fields/email/email.php:67, ../profile-builder-2.0/front-end/default-fields/email/email.php:77, ../profile-builder-2.0/front-end/default-fields/email/email.php:95, ../profile-builder-2.0/front-end/default-fields/username/username.php:49, ../profile-builder-2.0/front-end/default-fields/username/username.php:65
|
6221 |
+
msgid "Please try a different one!"
|
6222 |
+
msgstr ""
|
6223 |
+
|
6224 |
+
#: ../profile-builder-2.0/front-end/default-fields/email/email.php:77, ../profile-builder-2.0/front-end/default-fields/email/email.php:95
|
6225 |
+
msgid "This email is already in use."
|
6226 |
+
msgstr ""
|
6227 |
+
|
6228 |
+
#: ../profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37, ../profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
|
6229 |
+
msgid "The passwords do not match"
|
6230 |
+
msgstr ""
|
6231 |
+
|
6232 |
+
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:53
|
6233 |
+
msgid "To use reCAPTCHA you must get an API key from"
|
6234 |
+
msgstr ""
|
6235 |
+
|
6236 |
+
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:173
|
6237 |
+
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
6238 |
+
msgstr ""
|
6239 |
+
|
6240 |
+
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:238
|
6241 |
+
msgid "To use reCAPTCHA you must get an API public key from:"
|
6242 |
+
msgstr ""
|
6243 |
+
|
6244 |
+
#: ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:516
|
6245 |
+
msgid "Click the BACK button on your browser, and try again."
|
6246 |
+
msgstr ""
|
6247 |
+
|
6248 |
+
#: ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:92, ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:105
|
6249 |
+
msgid "Only administrators can see this field on edit profile forms."
|
6250 |
+
msgstr ""
|
6251 |
+
|
6252 |
+
#: ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:101
|
6253 |
+
msgid "As an administrator you cannot change your role."
|
6254 |
+
msgstr ""
|
6255 |
+
|
6256 |
+
#: ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:137, ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:161, ../profile-builder-2.0/front-end/default-fields/user-role/user-role.php:166
|
6257 |
+
msgid "You cannot register this user role"
|
6258 |
+
msgstr ""
|
6259 |
+
|
6260 |
+
#: ../profile-builder-2.0/front-end/default-fields/username/username.php:49
|
6261 |
+
msgid "This username already exists."
|
6262 |
+
msgstr ""
|
6263 |
+
|
6264 |
+
#: ../profile-builder-2.0/front-end/default-fields/username/username.php:52, ../profile-builder-2.0/front-end/default-fields/username/username.php:60
|
6265 |
+
msgid "This username is invalid because it uses illegal characters."
|
6266 |
+
msgstr ""
|
6267 |
+
|
6268 |
+
#: ../profile-builder-2.0/front-end/default-fields/username/username.php:52, ../profile-builder-2.0/front-end/default-fields/username/username.php:60
|
6269 |
+
msgid "Please enter a valid username."
|
6270 |
+
msgstr ""
|
6271 |
+
|
6272 |
+
#: ../profile-builder-2.0/front-end/default-fields/username/username.php:65
|
6273 |
+
msgid "This username is already reserved to be used soon."
|
6274 |
+
msgstr ""
|
6275 |
+
|
6276 |
+
#: ../profile-builder-2.0/front-end/extra-fields/map/map.php:46, ../profile-builder-2.0/front-end/extra-fields/map/map.php:69
|
6277 |
+
msgid "Please add the Google Maps API key for this field."
|
6278 |
+
msgstr ""
|
6279 |
+
|
6280 |
+
#: ../profile-builder-2.0/front-end/extra-fields/map/map.php:134
|
6281 |
+
msgid "Something went wrong. Please try again."
|
6282 |
+
msgstr ""
|
6283 |
+
|
6284 |
+
#: ../profile-builder-2.0/front-end/extra-fields/number/number.php:69
|
6285 |
+
msgid "Please enter numbers only"
|
6286 |
+
msgstr ""
|
6287 |
+
|
6288 |
+
#: ../profile-builder-2.0/front-end/extra-fields/number/number.php:73
|
6289 |
+
msgid "Value must be a multiplier of %1$s"
|
6290 |
+
msgstr ""
|
6291 |
+
|
6292 |
+
#: ../profile-builder-2.0/front-end/extra-fields/number/number.php:77
|
6293 |
+
msgid "Value must be greater than or equal to %1$s"
|
6294 |
+
msgstr ""
|
6295 |
+
|
6296 |
+
#: ../profile-builder-2.0/front-end/extra-fields/number/number.php:81
|
6297 |
+
msgid "Value must be less than or equal to %1$s"
|
6298 |
+
msgstr ""
|
6299 |
+
|
6300 |
+
#: ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
|
6301 |
+
msgid "Required phone number format: "
|
6302 |
+
msgstr ""
|
6303 |
+
|
6304 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6305 |
+
msgid "Bolivia, __( Plurinational State of"
|
6306 |
+
msgstr ""
|
6307 |
+
|
6308 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6309 |
+
msgid "Bonaire, __( Sint Eustatius and Saba"
|
6310 |
+
msgstr ""
|
6311 |
+
|
6312 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6313 |
+
msgid "Brunei Darussalam"
|
6314 |
+
msgstr ""
|
6315 |
+
|
6316 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6317 |
+
msgid "Cabo Verde"
|
6318 |
+
msgstr ""
|
6319 |
+
|
6320 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6321 |
+
msgid "Cocos (Keeling) Islands"
|
6322 |
+
msgstr ""
|
6323 |
+
|
6324 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6325 |
+
msgid "Congo"
|
6326 |
+
msgstr ""
|
6327 |
+
|
6328 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6329 |
+
msgid "Congo, __( the Democratic Republic of the"
|
6330 |
+
msgstr ""
|
6331 |
+
|
6332 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6333 |
+
msgid "Cote dIvoire"
|
6334 |
+
msgstr ""
|
6335 |
+
|
6336 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6337 |
+
msgid "Falkland Islands (Malvinas)"
|
6338 |
+
msgstr ""
|
6339 |
+
|
6340 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6341 |
+
msgid "Holy See (Vatican City State)"
|
6342 |
+
msgstr ""
|
6343 |
+
|
6344 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6345 |
+
msgid "Iran, __( Islamic Republic of"
|
6346 |
+
msgstr ""
|
6347 |
+
|
6348 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6349 |
+
msgid "Korea, __( Democratic Peoples Republic of"
|
6350 |
+
msgstr ""
|
6351 |
+
|
6352 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6353 |
+
msgid "Korea, __( Republic of"
|
6354 |
+
msgstr ""
|
6355 |
+
|
6356 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6357 |
+
msgid "Lao Peoples Democratic Republic"
|
6358 |
+
msgstr ""
|
6359 |
+
|
6360 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6361 |
+
msgid "Macedonia, __( the former Yugoslav Republic of"
|
6362 |
+
msgstr ""
|
6363 |
+
|
6364 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6365 |
+
msgid "Micronesia, __( Federated States of"
|
6366 |
+
msgstr ""
|
6367 |
+
|
6368 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6369 |
+
msgid "Moldova, __( Republic of"
|
6370 |
+
msgstr ""
|
6371 |
+
|
6372 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6373 |
+
msgid "Palestine, __( State of"
|
6374 |
+
msgstr ""
|
6375 |
+
|
6376 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6377 |
+
msgid "Russian Federation"
|
6378 |
+
msgstr ""
|
6379 |
+
|
6380 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6381 |
+
msgid "Saint Helena, __( Ascension and Tristan da Cunha"
|
6382 |
+
msgstr ""
|
6383 |
+
|
6384 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6385 |
+
msgid "Saint Martin (French part)"
|
6386 |
+
msgstr ""
|
6387 |
+
|
6388 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6389 |
+
msgid "Sint Maarten (Dutch part)"
|
6390 |
+
msgstr ""
|
6391 |
+
|
6392 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6393 |
+
msgid "Syrian Arab Republic"
|
6394 |
+
msgstr ""
|
6395 |
+
|
6396 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6397 |
+
msgid "Taiwan, __( Province of China"
|
6398 |
+
msgstr ""
|
6399 |
+
|
6400 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6401 |
+
msgid "Tanzania, __( United Republic of"
|
6402 |
+
msgstr ""
|
6403 |
+
|
6404 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6405 |
+
msgid "Timor-Leste"
|
6406 |
+
msgstr ""
|
6407 |
+
|
6408 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6409 |
+
msgid "Venezuela, __( Bolivarian Republic of"
|
6410 |
+
msgstr ""
|
6411 |
+
|
6412 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6413 |
+
msgid "Viet Nam"
|
6414 |
+
msgstr ""
|
6415 |
+
|
6416 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6417 |
+
msgid "Virgin Islands, __( British"
|
6418 |
+
msgstr ""
|
6419 |
+
|
6420 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
6421 |
+
msgid "Virgin Islands, __( U.S."
|
6422 |
+
msgstr ""
|
6423 |
+
|
6424 |
+
#: ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:42, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:66, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/country select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/cpt select.php:17, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/select.php:14, ../pb-add-on-labels-edit/assets/lib/wck-api/fields/user select.php:15, ../profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14, ../profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17, ../profile-builder-2.0/assets/lib/wck-api/fields/select.php:14, ../profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
|
6425 |
+
msgid "...Choose"
|
6426 |
+
msgstr ""
|
6427 |
+
|
6428 |
+
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
|
6429 |
+
msgid "Remove"
|
6430 |
+
msgstr ""
|
6431 |
+
|
6432 |
+
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
|
6433 |
+
msgid "Select File"
|
6434 |
+
msgstr ""
|
6435 |
+
|
6436 |
+
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
|
6437 |
+
msgid "Upload "
|
6438 |
+
msgstr ""
|
6439 |
+
|
6440 |
+
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78, ../profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
|
6441 |
+
msgid "Sorry, you cannot upload this file type for this field."
|
6442 |
+
msgstr ""
|
6443 |
+
|
6444 |
+
#: ../profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
|
6445 |
+
msgid "An error occurred, please try again later."
|
6446 |
+
msgstr ""
|
6447 |
+
|
6448 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
|
6449 |
+
msgid "Limit"
|
6450 |
+
msgstr ""
|
6451 |
+
|
6452 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
|
6453 |
+
msgid "Enable limit to the number of fields to be generated by users in front end forms "
|
6454 |
+
msgstr ""
|
6455 |
+
|
6456 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
|
6457 |
+
msgid "General Limit"
|
6458 |
+
msgstr ""
|
6459 |
+
|
6460 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
|
6461 |
+
msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
|
6462 |
+
msgstr ""
|
6463 |
+
|
6464 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
|
6465 |
+
msgid "Limit reached message"
|
6466 |
+
msgstr ""
|
6467 |
+
|
6468 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
|
6469 |
+
msgid "The maximum number of fields has been reached."
|
6470 |
+
msgstr ""
|
6471 |
+
|
6472 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
|
6473 |
+
msgid "The popup message to display when the limit of repeater groups is reached."
|
6474 |
+
msgstr ""
|
6475 |
+
|
6476 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
|
6477 |
+
msgid "Limit per Role"
|
6478 |
+
msgstr ""
|
6479 |
+
|
6480 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
|
6481 |
+
msgid "Leave 0 for unlimited."
|
6482 |
+
msgstr ""
|
6483 |
+
|
6484 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
|
6485 |
+
msgid "Repeated field group"
|
6486 |
+
msgstr ""
|
6487 |
+
|
6488 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
|
6489 |
+
msgid "Manage field or group of fields that will be repeatable."
|
6490 |
+
msgstr ""
|
6491 |
+
|
6492 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
|
6493 |
+
msgid "Edit field group"
|
6494 |
+
msgstr ""
|
6495 |
+
|
6496 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
|
6497 |
+
msgid "Repeatable fields saved!"
|
6498 |
+
msgstr ""
|
6499 |
+
|
6500 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
|
6501 |
+
msgid "Please enter a unique field title."
|
6502 |
+
msgstr ""
|
6503 |
+
|
6504 |
+
#: ../profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
|
6505 |
+
msgid ""
|
6506 |
+
"Please enter a unique field title.\n"
|
6507 |
+
""
|
6508 |
+
msgstr ""
|