Version Description
- Added GDPR checkbox default field
- Fixed some warnings with Onfleek theme
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 2.8.2 |
Comparing to | |
See all releases |
Code changes from version 2.8.1 to 2.8.2
- admin/manage-fields.php +3 -0
- assets/css/style-front-end.css +13 -0
- assets/js/jquery-manage-fields-live-change.js +23 -0
- features/content-restriction/content-restriction-functions.php +4 -0
- features/functions.php +1 -0
- front-end/default-fields/default-fields.php +3 -0
- front-end/default-fields/gdpr/gdpr.php +55 -0
- index.php +2 -2
- readme.txt +5 -1
- translation/profile-builder.catalog.php +2 -0
- translation/profile-builder.pot +539 -531
admin/manage-fields.php
CHANGED
@@ -52,6 +52,9 @@ function wppb_populate_manage_fields(){
|
|
52 |
$manage_field_types[] = 'reCAPTCHA';
|
53 |
$manage_field_types[] = 'Select (User Role)';
|
54 |
|
|
|
|
|
|
|
55 |
if( PROFILE_BUILDER != 'Profile Builder Free' ) {
|
56 |
$manage_field_types[] = 'Heading';
|
57 |
$manage_field_types[] = 'Input';
|
52 |
$manage_field_types[] = 'reCAPTCHA';
|
53 |
$manage_field_types[] = 'Select (User Role)';
|
54 |
|
55 |
+
/* added recaptcha and user role field since version 2.8.2 */
|
56 |
+
$manage_field_types[] = 'GDPR Checkbox';
|
57 |
+
|
58 |
if( PROFILE_BUILDER != 'Profile Builder Free' ) {
|
59 |
$manage_field_types[] = 'Heading';
|
60 |
$manage_field_types[] = 'Input';
|
assets/css/style-front-end.css
CHANGED
@@ -336,6 +336,19 @@ label[for=blog-privacy]{
|
|
336 |
}
|
337 |
|
338 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
/*--------------------------------------------------------------
|
340 |
4.0 Errors & Notices
|
341 |
--------------------------------------------------------------*/
|
336 |
}
|
337 |
|
338 |
|
339 |
+
/* GDPR checkbox */
|
340 |
+
.wppb-gdpr-checkbox.wppb-form-field label{
|
341 |
+
width:100%;
|
342 |
+
float:none;
|
343 |
+
}
|
344 |
+
|
345 |
+
.wppb-gdpr-checkbox.wppb-form-field #user_consent_gdpr{
|
346 |
+
float:none;
|
347 |
+
width:auto;
|
348 |
+
margin:0 10px 0 0;
|
349 |
+
}
|
350 |
+
|
351 |
+
|
352 |
/*--------------------------------------------------------------
|
353 |
4.0 Errors & Notices
|
354 |
--------------------------------------------------------------*/
|
assets/js/jquery-manage-fields-live-change.js
CHANGED
@@ -199,6 +199,23 @@ var fields = {
|
|
199 |
}
|
200 |
},
|
201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
'Heading': { 'show_rows' : [
|
203 |
'.row-field-title',
|
204 |
'.row-description',
|
@@ -602,6 +619,12 @@ function wppb_display_needed_fields( index, container_name, current_field_select
|
|
602 |
jQuery( container_name + ' ' + '#meta-name' ).val( properties['meta_name_value'] );
|
603 |
jQuery( container_name + ' ' + '#meta-name' ).attr( 'readonly', true );
|
604 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
}
|
606 |
|
607 |
}else{
|
199 |
}
|
200 |
},
|
201 |
|
202 |
+
'GDPR Checkbox': { 'show_rows' : [
|
203 |
+
'.row-field-title',
|
204 |
+
'.row-meta-name',
|
205 |
+
'.row-description',
|
206 |
+
'.row-required',
|
207 |
+
'.row-overwrite-existing'
|
208 |
+
],
|
209 |
+
'properties': {
|
210 |
+
'meta_name_value' : 'user_consent_gdpr',
|
211 |
+
'field_title' : wppb_fields_strings.gdpr_title,
|
212 |
+
'description' : wppb_fields_strings.gdpr_description
|
213 |
+
},
|
214 |
+
'required' : [
|
215 |
+
true
|
216 |
+
]
|
217 |
+
},
|
218 |
+
|
219 |
'Heading': { 'show_rows' : [
|
220 |
'.row-field-title',
|
221 |
'.row-description',
|
619 |
jQuery( container_name + ' ' + '#meta-name' ).val( properties['meta_name_value'] );
|
620 |
jQuery( container_name + ' ' + '#meta-name' ).attr( 'readonly', true );
|
621 |
}
|
622 |
+
if ( ( typeof properties['field_title'] !== 'undefined' ) ){
|
623 |
+
jQuery( container_name + ' ' + '#field-title' ).val( properties['field_title'] );
|
624 |
+
}
|
625 |
+
if ( ( typeof properties['description'] !== 'undefined' ) ){
|
626 |
+
jQuery( container_name + ' ' + '#description' ).val( properties['description'] );
|
627 |
+
}
|
628 |
}
|
629 |
|
630 |
}else{
|
features/content-restriction/content-restriction-functions.php
CHANGED
@@ -3,6 +3,10 @@
|
|
3 |
/* Verifies whether the current post or the post with the provided id has any restrictions in place */
|
4 |
function wppb_content_restriction_is_post_restricted( $post_id = null ) {
|
5 |
|
|
|
|
|
|
|
|
|
6 |
global $post, $wppb_show_content, $wppb_is_post_restricted_arr;
|
7 |
|
8 |
// If we have a cached result, return it
|
3 |
/* Verifies whether the current post or the post with the provided id has any restrictions in place */
|
4 |
function wppb_content_restriction_is_post_restricted( $post_id = null ) {
|
5 |
|
6 |
+
//fixes some php warnings with Onfleek theme
|
7 |
+
if( is_array( $post_id ) && empty( $post_id ) )
|
8 |
+
$post_id = null;
|
9 |
+
|
10 |
global $post, $wppb_show_content, $wppb_is_post_restricted_arr;
|
11 |
|
12 |
// If we have a cached result, return it
|
features/functions.php
CHANGED
@@ -254,6 +254,7 @@ function wppb_print_cpt_script( $hook ){
|
|
254 |
|
255 |
if ( $hook == 'profile-builder_page_manage-fields' ){
|
256 |
wp_enqueue_script( 'wppb-manage-fields-live-change', WPPB_PLUGIN_URL . 'assets/js/jquery-manage-fields-live-change.js', array(), PROFILE_BUILDER_VERSION, true );
|
|
|
257 |
}
|
258 |
|
259 |
if (( $hook == 'profile-builder_page_manage-fields' ) ||
|
254 |
|
255 |
if ( $hook == 'profile-builder_page_manage-fields' ){
|
256 |
wp_enqueue_script( 'wppb-manage-fields-live-change', WPPB_PLUGIN_URL . 'assets/js/jquery-manage-fields-live-change.js', array(), PROFILE_BUILDER_VERSION, true );
|
257 |
+
wp_localize_script( 'wppb-manage-fields-live-change', 'wppb_fields_strings', array( 'gdpr_title' => __( 'GDPR Checkbox', 'profile-builder' ), 'gdpr_description' => __( 'I allow the website to collect and store the data I submit through this form.', 'profile-builder' ) ) );
|
258 |
}
|
259 |
|
260 |
if (( $hook == 'profile-builder_page_manage-fields' ) ||
|
front-end/default-fields/default-fields.php
CHANGED
@@ -41,5 +41,8 @@ function wppb_include_default_fields_files() {
|
|
41 |
/* added recaptcha and user role field since version 2.6.2 */
|
42 |
include_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/recaptcha/recaptcha.php' );
|
43 |
include_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/user-role/user-role.php' );
|
|
|
|
|
|
|
44 |
}
|
45 |
wppb_include_default_fields_files();
|
41 |
/* added recaptcha and user role field since version 2.6.2 */
|
42 |
include_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/recaptcha/recaptcha.php' );
|
43 |
include_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/user-role/user-role.php' );
|
44 |
+
|
45 |
+
/* added recaptcha and user role field since version 2.8.2 */
|
46 |
+
include_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/gdpr/gdpr.php' );
|
47 |
}
|
48 |
wppb_include_default_fields_files();
|
front-end/default-fields/gdpr/gdpr.php
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/* handle field output */
|
3 |
+
function wppb_gdpr_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
|
4 |
+
if ( $field['field'] == 'GDPR Checkbox' ){
|
5 |
+
if ( $form_location == 'register' ){
|
6 |
+
$item_title = apply_filters( 'wppb_'.$form_location.'_gdpr_custom_field_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
|
7 |
+
$item_description = wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_description_translation', $field['description'] );
|
8 |
+
|
9 |
+
$input_value = ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) ? trim( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) : '' );
|
10 |
+
|
11 |
+
$error_mark = ( ( $field['required'] == 'Yes' ) ? '<span class="wppb-required" title="'.wppb_required_field_error($field["field-title"]).'">*</span>' : '' );
|
12 |
+
if ( array_key_exists( $field['id'], $field_check_errors ) )
|
13 |
+
$error_mark = '<img src="'.WPPB_PLUGIN_URL.'assets/images/pencil_delete.png" title="'.wppb_required_field_error($field["field-title"]).'"/>';
|
14 |
+
|
15 |
+
$extra_attr = apply_filters( 'wppb_extra_attribute', '', $field, $form_location );
|
16 |
+
|
17 |
+
$output = '
|
18 |
+
<label for="'.$field['meta-name'].'">
|
19 |
+
<input value="agree" name="'.$field['meta-name'].'" id="'.$field['meta-name'].'" type="checkbox" class="custom_field_gdpr" '. $extra_attr .' ';
|
20 |
+
|
21 |
+
if ( isset( $input_value ) && ( $input_value == 'agree' ) )
|
22 |
+
$output .= ' checked="yes"';
|
23 |
+
|
24 |
+
$output .= ' />'.trim( html_entity_decode ( $item_description ) ).$error_mark.'</label>';
|
25 |
+
|
26 |
+
return apply_filters( 'wppb_'.$form_location.'_gdpr_custom_field_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data, $input_value );
|
27 |
+
}
|
28 |
+
}
|
29 |
+
}
|
30 |
+
add_filter( 'wppb_output_form_field_gdpr-checkbox', 'wppb_gdpr_handler', 10, 6 );
|
31 |
+
|
32 |
+
|
33 |
+
/* handle field save */
|
34 |
+
function wppb_save_gdpr_value( $field, $user_id, $request_data, $form_location ){
|
35 |
+
if( $field['field'] == 'GDPR Checkbox' ){
|
36 |
+
if ( $form_location == 'register' ){
|
37 |
+
if ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) )
|
38 |
+
update_user_meta( $user_id, $field['meta-name'], $request_data[wppb_handle_meta_name( $field['meta-name'] )] );
|
39 |
+
}
|
40 |
+
}
|
41 |
+
}
|
42 |
+
add_action( 'wppb_save_form_field', 'wppb_save_gdpr_value', 10, 4 );
|
43 |
+
|
44 |
+
/* handle field validation */
|
45 |
+
function wppb_check_gdpr_value( $message, $field, $request_data, $form_location ){
|
46 |
+
if( $field['field'] == 'GDPR Checkbox' ){
|
47 |
+
if ( $form_location == 'register' ){
|
48 |
+
if ( ( ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) && ( trim( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) == '' ) ) && ( $field['required'] == 'Yes' ) ) || ( !isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) && ( $field['required'] == 'Yes' ) ) ){
|
49 |
+
return wppb_required_field_error($field["field-title"]);
|
50 |
+
}
|
51 |
+
}
|
52 |
+
}
|
53 |
+
return $message;
|
54 |
+
}
|
55 |
+
add_filter( 'wppb_check_form_field_gdpr-checkbox', 'wppb_check_gdpr_value', 10, 4 );
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 2.8.
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
|
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
-
define('PROFILE_BUILDER_VERSION', '2.8.
|
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 choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 2.8.2
|
7 |
Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
+
define('PROFILE_BUILDER_VERSION', '2.8.2' );
|
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.5
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -165,6 +165,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
165 |
12. Role Editor
|
166 |
|
167 |
== Changelog ==
|
|
|
|
|
|
|
|
|
168 |
= 2.8.1 =
|
169 |
* Added a feedback modal on plugin deactivate for profile builder
|
170 |
* Added 'form_name' parameter to the submit button value hook.
|
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.5
|
7 |
+
Stable tag: 2.8.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
165 |
12. Role Editor
|
166 |
|
167 |
== Changelog ==
|
168 |
+
= 2.8.2 =
|
169 |
+
* Added GDPR checkbox default field
|
170 |
+
* Fixed some warnings with Onfleek theme
|
171 |
+
|
172 |
= 2.8.1 =
|
173 |
* Added a feedback modal on plugin deactivate for profile builder
|
174 |
* Added 'form_name' parameter to the submit button value hook.
|
translation/profile-builder.catalog.php
CHANGED
@@ -1064,6 +1064,8 @@
|
|
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"); ?>
|
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 __("GDPR Checkbox", "profile-builder"); ?>
|
1068 |
+
<?php __("I allow the website to collect and store the data I submit through this form.", "profile-builder"); ?>
|
1069 |
<?php __("Strength indicator", "profile-builder"); ?>
|
1070 |
<?php __("Very Weak", "profile-builder"); ?>
|
1071 |
<?php __("Minimum length of %d characters.", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -209,7 +209,7 @@ msgstr ""
|
|
209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../pb-add-on-buddypress/index.php: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:
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
@@ -233,7 +233,7 @@ msgstr ""
|
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../pb-add-on-buddypress/index.php:534, ../profile-builder-2.0/admin/manage-fields.php:
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
@@ -241,7 +241,7 @@ msgstr ""
|
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: ../pb-add-on-buddypress/index.php:541, ../profile-builder-2.0/admin/manage-fields.php:
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
@@ -421,11 +421,11 @@ msgstr ""
|
|
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:
|
425 |
msgid "Edit"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../pb-add-on-field-visibility/index.php:222, ../profile-builder-2.0/admin/manage-fields.php:
|
429 |
msgid "Delete"
|
430 |
msgstr ""
|
431 |
|
@@ -535,7 +535,7 @@ msgstr ""
|
|
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:
|
539 |
msgid "Labels"
|
540 |
msgstr ""
|
541 |
|
@@ -853,7 +853,7 @@ msgstr ""
|
|
853 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: index.php:390, ../profile-builder-2.0/features/functions.php:
|
857 |
msgid "here"
|
858 |
msgstr ""
|
859 |
|
@@ -913,11 +913,11 @@ msgstr ""
|
|
913 |
msgid "Country"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:
|
917 |
msgid "First Name"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:
|
921 |
msgid "Last Name"
|
922 |
msgstr ""
|
923 |
|
@@ -1025,7 +1025,7 @@ msgstr ""
|
|
1025 |
msgid "Field Name"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: ../pb-add-on-woocommerce/index.php:297, ../profile-builder-2.0/admin/manage-fields.php:
|
1029 |
msgid "Required"
|
1030 |
msgstr ""
|
1031 |
|
@@ -1165,7 +1165,7 @@ msgstr ""
|
|
1165 |
msgid "Click to edit"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: ../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:
|
1169 |
msgid "Cancel"
|
1170 |
msgstr ""
|
1171 |
|
@@ -1699,15 +1699,15 @@ msgstr ""
|
|
1699 |
msgid "Very weak"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: ../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:
|
1703 |
msgid "Weak"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: ../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:
|
1707 |
msgid "Medium"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: ../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:
|
1711 |
msgid "Strong"
|
1712 |
msgstr ""
|
1713 |
|
@@ -2103,7 +2103,7 @@ msgstr ""
|
|
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:
|
2107 |
msgid "Username"
|
2108 |
msgstr ""
|
2109 |
|
@@ -2147,2037 +2147,2037 @@ msgstr ""
|
|
2147 |
msgid "Manage Default and Extra Fields"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2151 |
msgid "Choose one of the supported field types"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
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:
|
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:
|
2167 |
msgid "Field Title"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2171 |
msgid "Title of the field"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2175 |
msgid "Field"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2179 |
msgid "Meta-name"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2183 |
msgid "ID"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2191 |
msgid "Description"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2199 |
msgid "Row Count"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2207 |
msgid "Allowed Image Extensions"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2215 |
msgid "Allowed Upload Extensions"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2223 |
msgid "Avatar Size"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2231 |
msgid "Date-format"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2239 |
msgid "Terms of Agreement"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2247 |
msgid "Options"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
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:
|
2259 |
msgid "reCAPTCHA Type"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2267 |
msgid "Site Key"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2275 |
msgid "Secret Key"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2283 |
msgid "Display on PB forms"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2287 |
msgid "PB Login"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2291 |
msgid "PB Register"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2295 |
msgid "PB Recover Password"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2299 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2303 |
msgid "Display on default WP forms"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2307 |
msgid "Default WP Login"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2311 |
msgid "Default WP Register"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2315 |
msgid "Default WP Recover Password"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2319 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2323 |
msgid "User Roles"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2331 |
msgid "User Roles Order"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2335 |
msgid "Save the user role order from the user roles checkboxes"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2339 |
msgid "Default Value"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2343 |
msgid "Default value of the field"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2347 |
msgid "Default Option"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2351 |
msgid "Specify the option which should be selected by default"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2355 |
msgid "Default Option(s)"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2363 |
msgid "Default option of the field"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2367 |
msgid "Show Currency Symbol"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2375 |
msgid "Show Post Type"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2383 |
msgid "Allowable Values"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2391 |
msgid "Error Message"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2399 |
msgid "Time Format"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2403 |
msgid "Specify the time format."
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2407 |
msgid "Google Maps API Key"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2415 |
msgid "Default Latitude"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2423 |
msgid "Default Longitude"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2431 |
msgid "Default Zoom Level"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2439 |
msgid "Map Height"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2443 |
msgid "The height of the map."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2447 |
msgid "Default Content"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2451 |
msgid "Default value of the textarea"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2455 |
msgid "HTML Content"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2459 |
msgid "Add your HTML (or text) content"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2463 |
msgid "Phone Format"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2471 |
msgid "Eg. (###) ###-####"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2475 |
msgid "Empty field won't check for correct phone number."
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2479 |
msgid "Heading Tag"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2483 |
msgid "Change heading field size on front-end forms"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2487 |
msgid "Min Number Value"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2491 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2495 |
msgid "Leave it empty for no min value"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2499 |
msgid "Max Number Value"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2503 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2507 |
msgid "Leave it empty for no max value"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2511 |
msgid "Number Step Value"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
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:
|
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:
|
2527 |
msgid "Leave it empty for no restriction"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2531 |
msgid "Whether the field is required or not"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2535 |
msgid "Overwrite Existing"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2543 |
msgid "Field Properties"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2547 |
msgid "Registration & Edit Profile"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2551 |
msgid "Usernames cannot be changed."
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2555 |
msgid "Nickname"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2559 |
msgid "Display name publicly as"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2563 |
msgid "E-mail"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2567 |
msgid "Website"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2571 |
msgid "AIM"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2575 |
msgid "Yahoo IM"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2579 |
msgid "Jabber / Google Talk"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2583 |
msgid "Biographical Info"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
2591 |
msgid "Password"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2595 |
msgid "Type your password."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2599 |
msgid "Repeat Password"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2603 |
msgid "Type your password again. "
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2607 |
msgid "Blog Details"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2611 |
msgid "Afghanistan"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2615 |
msgid "Aland Islands"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2619 |
msgid "Albania"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2623 |
msgid "Algeria"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2627 |
msgid "American Samoa"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2631 |
msgid "Andorra"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2635 |
msgid "Angola"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2639 |
msgid "Anguilla"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2643 |
msgid "Antarctica"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2647 |
msgid "Antigua and Barbuda"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2651 |
msgid "Argentina"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2655 |
msgid "Armenia"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2659 |
msgid "Aruba"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2663 |
msgid "Australia"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2667 |
msgid "Austria"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2671 |
msgid "Azerbaijan"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2675 |
msgid "Bahamas"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2679 |
msgid "Bahrain"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2683 |
msgid "Bangladesh"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2687 |
msgid "Barbados"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2691 |
msgid "Belarus"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2695 |
msgid "Belgium"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2699 |
msgid "Belize"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2703 |
msgid "Benin"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2707 |
msgid "Bermuda"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2711 |
msgid "Bhutan"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2715 |
msgid "Bolivia"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2719 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2723 |
msgid "Bosnia and Herzegovina"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2727 |
msgid "Botswana"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2731 |
msgid "Bouvet Island"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2735 |
msgid "Brazil"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2739 |
msgid "British Indian Ocean Territory"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2743 |
msgid "British Virgin Islands"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2747 |
msgid "Brunei"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2751 |
msgid "Bulgaria"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2755 |
msgid "Burkina Faso"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2759 |
msgid "Burundi"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2763 |
msgid "Cambodia"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2767 |
msgid "Cameroon"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2771 |
msgid "Canada"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2775 |
msgid "Cape Verde"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2779 |
msgid "Cayman Islands"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2783 |
msgid "Central African Republic"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2787 |
msgid "Chad"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2791 |
msgid "Chile"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2795 |
msgid "China"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2799 |
msgid "Christmas Island"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2803 |
msgid "Cocos Islands"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2807 |
msgid "Colombia"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2811 |
msgid "Comoros"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2815 |
msgid "Cook Islands"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2819 |
msgid "Costa Rica"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2823 |
msgid "Croatia"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2827 |
msgid "Cuba"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2831 |
msgid "Curacao"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2835 |
msgid "Cyprus"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2839 |
msgid "Czech Republic"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2843 |
msgid "Democratic Republic of the Congo"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2847 |
msgid "Denmark"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2851 |
msgid "Djibouti"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2855 |
msgid "Dominica"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2859 |
msgid "Dominican Republic"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2863 |
msgid "East Timor"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2867 |
msgid "Ecuador"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2871 |
msgid "Egypt"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2875 |
msgid "El Salvador"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2879 |
msgid "Equatorial Guinea"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2883 |
msgid "Eritrea"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2887 |
msgid "Estonia"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2891 |
msgid "Ethiopia"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2895 |
msgid "Falkland Islands"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2899 |
msgid "Faroe Islands"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2903 |
msgid "Fiji"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2907 |
msgid "Finland"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2911 |
msgid "France"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2915 |
msgid "French Guiana"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2919 |
msgid "French Polynesia"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2923 |
msgid "French Southern Territories"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2927 |
msgid "Gabon"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2931 |
msgid "Gambia"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2935 |
msgid "Georgia"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2939 |
msgid "Germany"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2943 |
msgid "Ghana"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2947 |
msgid "Gibraltar"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2951 |
msgid "Greece"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2955 |
msgid "Greenland"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2959 |
msgid "Grenada"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2963 |
msgid "Guadeloupe"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2967 |
msgid "Guam"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2971 |
msgid "Guatemala"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2975 |
msgid "Guernsey"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2979 |
msgid "Guinea"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2983 |
msgid "Guinea-Bissau"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2987 |
msgid "Guyana"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2991 |
msgid "Haiti"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2995 |
msgid "Heard Island and McDonald Islands"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2999 |
msgid "Honduras"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3003 |
msgid "Hong Kong"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3007 |
msgid "Hungary"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3011 |
msgid "Iceland"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3015 |
msgid "India"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3019 |
msgid "Indonesia"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3023 |
msgid "Iran"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3027 |
msgid "Iraq"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3031 |
msgid "Ireland"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3035 |
msgid "Isle of Man"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3039 |
msgid "Israel"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3043 |
msgid "Italy"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3047 |
msgid "Ivory Coast"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3051 |
msgid "Jamaica"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3055 |
msgid "Japan"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3059 |
msgid "Jersey"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3063 |
msgid "Jordan"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3067 |
msgid "Kazakhstan"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3071 |
msgid "Kenya"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3075 |
msgid "Kiribati"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3079 |
msgid "Kosovo"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3083 |
msgid "Kuwait"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3087 |
msgid "Kyrgyzstan"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3091 |
msgid "Laos"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3095 |
msgid "Latvia"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3099 |
msgid "Lebanon"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3103 |
msgid "Lesotho"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3107 |
msgid "Liberia"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3111 |
msgid "Libya"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3115 |
msgid "Liechtenstein"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3119 |
msgid "Lithuania"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3123 |
msgid "Luxembourg"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3127 |
msgid "Macao"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3131 |
msgid "Macedonia"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3135 |
msgid "Madagascar"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3139 |
msgid "Malawi"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3143 |
msgid "Malaysia"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3147 |
msgid "Maldives"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3151 |
msgid "Mali"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3155 |
msgid "Malta"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3159 |
msgid "Marshall Islands"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3163 |
msgid "Martinique"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3167 |
msgid "Mauritania"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3171 |
msgid "Mauritius"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3175 |
msgid "Mayotte"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3179 |
msgid "Mexico"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3183 |
msgid "Micronesia"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3187 |
msgid "Moldova"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3191 |
msgid "Monaco"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3195 |
msgid "Mongolia"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3199 |
msgid "Montenegro"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3203 |
msgid "Montserrat"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3207 |
msgid "Morocco"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3211 |
msgid "Mozambique"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3215 |
msgid "Myanmar"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3219 |
msgid "Namibia"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3223 |
msgid "Nauru"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3227 |
msgid "Nepal"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3231 |
msgid "Netherlands"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3235 |
msgid "New Caledonia"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3239 |
msgid "New Zealand"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3243 |
msgid "Nicaragua"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3247 |
msgid "Niger"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3251 |
msgid "Nigeria"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3255 |
msgid "Niue"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3259 |
msgid "Norfolk Island"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3263 |
msgid "North Korea"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3267 |
msgid "Northern Mariana Islands"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3271 |
msgid "Norway"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3275 |
msgid "Oman"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3279 |
msgid "Pakistan"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3283 |
msgid "Palau"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3287 |
msgid "Palestinian Territory"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3291 |
msgid "Panama"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3295 |
msgid "Papua New Guinea"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3299 |
msgid "Paraguay"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3303 |
msgid "Peru"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3307 |
msgid "Philippines"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3311 |
msgid "Pitcairn"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3315 |
msgid "Poland"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3319 |
msgid "Portugal"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3323 |
msgid "Puerto Rico"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3327 |
msgid "Qatar"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3331 |
msgid "Republic of the Congo"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3335 |
msgid "Reunion"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3339 |
msgid "Romania"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3343 |
msgid "Russia"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3347 |
msgid "Rwanda"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3351 |
msgid "Saint Barthelemy"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3355 |
msgid "Saint Helena"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3359 |
msgid "Saint Kitts and Nevis"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3363 |
msgid "Saint Lucia"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3367 |
msgid "Saint Martin"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3371 |
msgid "Saint Pierre and Miquelon"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3375 |
msgid "Saint Vincent and the Grenadines"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3379 |
msgid "Samoa"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3383 |
msgid "San Marino"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3387 |
msgid "Sao Tome and Principe"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3391 |
msgid "Saudi Arabia"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3395 |
msgid "Senegal"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3399 |
msgid "Serbia"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3403 |
msgid "Seychelles"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3407 |
msgid "Sierra Leone"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3411 |
msgid "Singapore"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3415 |
msgid "Sint Maarten"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3419 |
msgid "Slovakia"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3423 |
msgid "Slovenia"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3427 |
msgid "Solomon Islands"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3431 |
msgid "Somalia"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3435 |
msgid "South Africa"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3439 |
msgid "South Georgia and the South Sandwich Islands"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3443 |
msgid "South Korea"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3447 |
msgid "South Sudan"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3451 |
msgid "Spain"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3455 |
msgid "Sri Lanka"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3459 |
msgid "Sudan"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3463 |
msgid "Suriname"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3467 |
msgid "Svalbard and Jan Mayen"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3471 |
msgid "Swaziland"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3475 |
msgid "Sweden"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3479 |
msgid "Switzerland"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3483 |
msgid "Syria"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3487 |
msgid "Taiwan"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3491 |
msgid "Tajikistan"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3495 |
msgid "Tanzania"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3499 |
msgid "Thailand"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3503 |
msgid "Togo"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3507 |
msgid "Tokelau"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3511 |
msgid "Tonga"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3515 |
msgid "Trinidad and Tobago"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3519 |
msgid "Tunisia"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3523 |
msgid "Turkey"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3527 |
msgid "Turkmenistan"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3531 |
msgid "Turks and Caicos Islands"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3535 |
msgid "Tuvalu"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3539 |
msgid "U.S. Virgin Islands"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3543 |
msgid "Uganda"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3547 |
msgid "Ukraine"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3551 |
msgid "United Arab Emirates"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3555 |
msgid "United Kingdom"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3559 |
msgid "United States"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3563 |
msgid "United States Minor Outlying Islands"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3567 |
msgid "Uruguay"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3571 |
msgid "Uzbekistan"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3575 |
msgid "Vanuatu"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3579 |
msgid "Vatican"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3583 |
msgid "Venezuela"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3587 |
msgid "Vietnam"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3591 |
msgid "Wallis and Futuna"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3595 |
msgid "Western Sahara"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3599 |
msgid "Yemen"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3603 |
msgid "Zambia"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3607 |
msgid "Zimbabwe"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3611 |
msgid "Albania Lek"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3615 |
msgid "Afghanistan Afghani"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3619 |
msgid "Argentina Peso"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3623 |
msgid "Australia Dollar"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3627 |
msgid "Azerbaijan New Manat"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3631 |
msgid "Bahamas Dollar"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3635 |
msgid "Barbados Dollar"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3639 |
msgid "Bangladeshi taka"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3643 |
msgid "Belarus Ruble"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3647 |
msgid "Belize Dollar"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3651 |
msgid "Bermuda Dollar"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3655 |
msgid "Bolivia Boliviano"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3659 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3663 |
msgid "Botswana Pula"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3667 |
msgid "Bulgaria Lev"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3671 |
msgid "Brazil Real"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3675 |
msgid "Brunei Darussalam Dollar"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3679 |
msgid "Cambodia Riel"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3683 |
msgid "Canada Dollar"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3687 |
msgid "Cayman Islands Dollar"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3691 |
msgid "Chile Peso"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3695 |
msgid "China Yuan Renminbi"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3699 |
msgid "Colombia Peso"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3703 |
msgid "Costa Rica Colon"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3707 |
msgid "Croatia Kuna"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3711 |
msgid "Cuba Peso"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3715 |
msgid "Czech Republic Koruna"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3719 |
msgid "Denmark Krone"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3723 |
msgid "Dominican Republic Peso"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3727 |
msgid "East Caribbean Dollar"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3731 |
msgid "Egypt Pound"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3735 |
msgid "El Salvador Colon"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3739 |
msgid "Estonia Kroon"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3743 |
msgid "Euro"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3747 |
msgid "Falkland Islands (Malvinas) Pound"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3751 |
msgid "Fiji Dollar"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3755 |
msgid "Ghana Cedis"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3759 |
msgid "Gibraltar Pound"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3763 |
msgid "Guatemala Quetzal"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3767 |
msgid "Guernsey Pound"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3771 |
msgid "Guyana Dollar"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3775 |
msgid "Honduras Lempira"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3779 |
msgid "Hong Kong Dollar"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3783 |
msgid "Hungary Forint"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3787 |
msgid "Iceland Krona"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3791 |
msgid "India Rupee"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3795 |
msgid "Indonesia Rupiah"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3799 |
msgid "Iran Rial"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3803 |
msgid "Isle of Man Pound"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3807 |
msgid "Israel Shekel"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3811 |
msgid "Jamaica Dollar"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3815 |
msgid "Japan Yen"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3819 |
msgid "Jersey Pound"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3823 |
msgid "Kazakhstan Tenge"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3827 |
msgid "Korea (North) Won"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3831 |
msgid "Korea (South) Won"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3835 |
msgid "Kyrgyzstan Som"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3839 |
msgid "Laos Kip"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3843 |
msgid "Latvia Lat"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3847 |
msgid "Lebanon Pound"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3851 |
msgid "Liberia Dollar"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3855 |
msgid "Lithuania Litas"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3859 |
msgid "Macedonia Denar"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3863 |
msgid "Malaysia Ringgit"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3867 |
msgid "Mauritius Rupee"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3871 |
msgid "Mexico Peso"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3875 |
msgid "Mongolia Tughrik"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3879 |
msgid "Mozambique Metical"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3883 |
msgid "Namibia Dollar"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3887 |
msgid "Nepal Rupee"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3891 |
msgid "Netherlands Antilles Guilder"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3895 |
msgid "New Zealand Dollar"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3899 |
msgid "Nicaragua Cordoba"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3903 |
msgid "Nigeria Naira"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3907 |
msgid "Norway Krone"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3911 |
msgid "Oman Rial"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3915 |
msgid "Pakistan Rupee"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3919 |
msgid "Panama Balboa"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3923 |
msgid "Paraguay Guarani"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3927 |
msgid "Peru Nuevo Sol"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3931 |
msgid "Philippines Peso"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3935 |
msgid "Poland Zloty"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3939 |
msgid "Qatar Riyal"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3943 |
msgid "Romania New Leu"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3947 |
msgid "Russia Ruble"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3951 |
msgid "Saint Helena Pound"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3955 |
msgid "Saudi Arabia Riyal"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3959 |
msgid "Serbia Dinar"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3963 |
msgid "Seychelles Rupee"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3967 |
msgid "Singapore Dollar"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3971 |
msgid "Solomon Islands Dollar"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3975 |
msgid "Somalia Shilling"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3979 |
msgid "South Africa Rand"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3983 |
msgid "Sri Lanka Rupee"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3987 |
msgid "Sweden Krona"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3991 |
msgid "Switzerland Franc"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3995 |
msgid "Suriname Dollar"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3999 |
msgid "Syria Pound"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4003 |
msgid "Taiwan New Dollar"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4007 |
msgid "Thailand Baht"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4011 |
msgid "Trinidad and Tobago Dollar"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4015 |
msgid "Turkey Lira"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4019 |
msgid "Tuvalu Dollar"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4023 |
msgid "Ukraine Hryvna"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4027 |
msgid "United Kingdom Pound"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4031 |
msgid "Uganda Shilling"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4035 |
msgid "US Dollar"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4039 |
msgid "Uruguay Peso"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4043 |
msgid "Uzbekistan Som"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4047 |
msgid "Venezuela Bolivar"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4051 |
msgid "Viet Nam Dong"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4055 |
msgid "Yemen Rial"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4059 |
msgid "Zimbabwe Dollar"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4063 |
msgid ""
|
4064 |
"You must select a field\n"
|
4065 |
""
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
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:
|
4081 |
msgid ""
|
4082 |
"The entered avatar size is not numerical\n"
|
4083 |
""
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4087 |
msgid ""
|
4088 |
"The entered row number is not numerical\n"
|
4089 |
""
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
4099 |
msgid ""
|
4100 |
"You must enter the site key\n"
|
4101 |
""
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4105 |
msgid ""
|
4106 |
"You must enter the secret key\n"
|
4107 |
""
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
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:
|
4123 |
msgid ""
|
4124 |
"The meta-name cannot be empty\n"
|
4125 |
""
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4129 |
msgid ""
|
4130 |
"That meta-name is already in use\n"
|
4131 |
""
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
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:
|
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:
|
4153 |
msgid ""
|
4154 |
"Please select at least one user role\n"
|
4155 |
""
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
4181 |
msgid "Search Location"
|
4182 |
msgstr ""
|
4183 |
|
@@ -4317,59 +4317,67 @@ msgstr ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4321 |
msgid "Strength indicator"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4325 |
msgid "Very Weak"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4329 |
msgid "Minimum length of %d characters."
|
4330 |
msgstr ""
|
4331 |
|
4332 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4333 |
msgid "The password must have a minimum strength of %s."
|
4334 |
msgstr ""
|
4335 |
|
4336 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4337 |
msgid "This field is required"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4341 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4342 |
msgstr ""
|
4343 |
|
4344 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4345 |
msgid "Incorrect phone number"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4349 |
msgid "Save Changes"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
-
#: ../profile-builder-2.0/features/functions.php:
|
4353 |
msgid "Content"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
-
#: ../profile-builder-2.0/features/functions.php:
|
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:
|
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:
|
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:
|
4369 |
msgid "<br><br>You can visit your site at "
|
4370 |
msgstr ""
|
4371 |
|
4372 |
-
#: ../profile-builder-2.0/features/functions.php:
|
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 |
|
@@ -4829,11 +4837,11 @@ msgstr ""
|
|
4829 |
msgid "This field has conditional logic enabled."
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: ../profile-builder-2.0/features/content-restriction/content-restriction-functions.php:
|
4833 |
msgid "You must be logged in to view this content."
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: ../profile-builder-2.0/features/content-restriction/content-restriction-functions.php:
|
4837 |
msgid "This content is restricted for your user role."
|
4838 |
msgstr ""
|
4839 |
|
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:214
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../pb-add-on-buddypress/index.php:534, ../profile-builder-2.0/admin/manage-fields.php:220
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../pb-add-on-buddypress/index.php:541, ../profile-builder-2.0/admin/manage-fields.php:231
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
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:1207, ../profile-builder-2.0/features/functions.php:748, ../profile-builder-2.0/features/functions.php:755, ../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:1207, ../profile-builder-2.0/features/functions.php:741, ../profile-builder-2.0/features/functions.php:755, ../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 |
|
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:143
|
539 |
msgid "Labels"
|
540 |
msgstr ""
|
541 |
|
853 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: index.php:390, ../profile-builder-2.0/features/functions.php:1033
|
857 |
msgid "here"
|
858 |
msgstr ""
|
859 |
|
913 |
msgid "Country"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:216
|
917 |
msgid "First Name"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:217
|
921 |
msgid "Last Name"
|
922 |
msgstr ""
|
923 |
|
1025 |
msgid "Field Name"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: ../pb-add-on-woocommerce/index.php:297, ../profile-builder-2.0/admin/manage-fields.php:174
|
1029 |
msgid "Required"
|
1030 |
msgstr ""
|
1031 |
|
1165 |
msgid "Click to edit"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: ../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:734, ../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
|
1169 |
msgid "Cancel"
|
1170 |
msgstr ""
|
1171 |
|
1699 |
msgid "Very weak"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: ../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:568, ../profile-builder-2.0/features/functions.php:592
|
1703 |
msgid "Weak"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: ../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:568, ../profile-builder-2.0/features/functions.php:592
|
1707 |
msgid "Medium"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: ../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:568, ../profile-builder-2.0/features/functions.php:592
|
1711 |
msgid "Strong"
|
1712 |
msgstr ""
|
1713 |
|
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:215, ../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:2269
|
2107 |
msgid "Username"
|
2108 |
msgstr ""
|
2109 |
|
2147 |
msgid "Manage Default and Extra Fields"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:87
|
2151 |
msgid "Choose one of the supported field types"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:89
|
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:122
|
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:125
|
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:131
|
2167 |
msgid "Field Title"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:131
|
2171 |
msgid "Title of the field"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:132, ../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:133
|
2179 |
msgid "Meta-name"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:134, ../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:134, ../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:135
|
2191 |
msgid "Description"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:135
|
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:136
|
2199 |
msgid "Row Count"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:136
|
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:137
|
2207 |
msgid "Allowed Image Extensions"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:137
|
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:138
|
2215 |
msgid "Allowed Upload Extensions"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:138
|
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:139
|
2223 |
msgid "Avatar Size"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:139
|
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:140
|
2231 |
msgid "Date-format"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:140
|
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:141
|
2239 |
msgid "Terms of Agreement"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:141
|
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:142
|
2247 |
msgid "Options"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:142
|
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:143
|
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:144
|
2259 |
msgid "reCAPTCHA Type"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:144
|
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:145
|
2267 |
msgid "Site Key"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:145
|
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:146
|
2275 |
msgid "Secret Key"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:146
|
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:147
|
2283 |
msgid "Display on PB forms"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:147
|
2287 |
msgid "PB Login"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:147
|
2291 |
msgid "PB Register"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:147
|
2295 |
msgid "PB Recover Password"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:147
|
2299 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:148
|
2303 |
msgid "Display on default WP forms"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:148
|
2307 |
msgid "Default WP Login"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:148
|
2311 |
msgid "Default WP Register"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:148
|
2315 |
msgid "Default WP Recover Password"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:148
|
2319 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:149
|
2323 |
msgid "User Roles"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:149
|
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:150
|
2331 |
msgid "User Roles Order"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:150
|
2335 |
msgid "Save the user role order from the user roles checkboxes"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:151
|
2339 |
msgid "Default Value"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:151
|
2343 |
msgid "Default value of the field"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:152, ../profile-builder-2.0/admin/manage-fields.php:154, ../profile-builder-2.0/admin/manage-fields.php:155, ../profile-builder-2.0/admin/manage-fields.php:156
|
2347 |
msgid "Default Option"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:152
|
2351 |
msgid "Specify the option which should be selected by default"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:153
|
2355 |
msgid "Default Option(s)"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:153
|
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:154, ../profile-builder-2.0/admin/manage-fields.php:155, ../profile-builder-2.0/admin/manage-fields.php:156
|
2363 |
msgid "Default option of the field"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:157
|
2367 |
msgid "Show Currency Symbol"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:157
|
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:158
|
2375 |
msgid "Show Post Type"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:158
|
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:159
|
2383 |
msgid "Allowable Values"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:159
|
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:160
|
2391 |
msgid "Error Message"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:160
|
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:161
|
2399 |
msgid "Time Format"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:161
|
2403 |
msgid "Specify the time format."
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:162
|
2407 |
msgid "Google Maps API Key"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:162
|
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:163
|
2415 |
msgid "Default Latitude"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:163
|
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:164
|
2423 |
msgid "Default Longitude"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:164
|
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:165
|
2431 |
msgid "Default Zoom Level"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:165
|
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:166
|
2439 |
msgid "Map Height"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
2443 |
msgid "The height of the map."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:167
|
2447 |
msgid "Default Content"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:167
|
2451 |
msgid "Default value of the textarea"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
2455 |
msgid "HTML Content"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
2459 |
msgid "Add your HTML (or text) content"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
2463 |
msgid "Phone Format"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
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:169
|
2471 |
msgid "Eg. (###) ###-####"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
2475 |
msgid "Empty field won't check for correct phone number."
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
2479 |
msgid "Heading Tag"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
2483 |
msgid "Change heading field size on front-end forms"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:171
|
2487 |
msgid "Min Number Value"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:171
|
2491 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:171
|
2495 |
msgid "Leave it empty for no min value"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:172
|
2499 |
msgid "Max Number Value"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:172
|
2503 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:172
|
2507 |
msgid "Leave it empty for no max value"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:173
|
2511 |
msgid "Number Step Value"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:173
|
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:173
|
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:173
|
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:173
|
2527 |
msgid "Leave it empty for no restriction"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:174
|
2531 |
msgid "Whether the field is required or not"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:175
|
2535 |
msgid "Overwrite Existing"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:175
|
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:181
|
2543 |
msgid "Field Properties"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:195
|
2547 |
msgid "Registration & Edit Profile"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:215
|
2551 |
msgid "Usernames cannot be changed."
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:218, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2277
|
2555 |
msgid "Nickname"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:219
|
2559 |
msgid "Display name publicly as"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:221, ../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:222, ../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:2271
|
2567 |
msgid "Website"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:226
|
2571 |
msgid "AIM"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:227
|
2575 |
msgid "Yahoo IM"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:228
|
2579 |
msgid "Jabber / Google Talk"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:232, ../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:2272
|
2583 |
msgid "Biographical Info"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:232
|
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:233, ../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:233
|
2595 |
msgid "Type your password."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:234, ../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:234
|
2603 |
msgid "Type your password again. "
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:236
|
2607 |
msgid "Blog Details"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:296, ../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:297, ../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:298, ../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:299, ../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:300, ../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:301, ../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:302, ../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:303, ../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:304, ../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:305, ../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:306, ../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:307, ../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:308, ../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:309, ../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:310, ../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:311, ../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:312, ../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:313, ../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:314, ../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:315, ../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:316, ../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:317, ../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:318, ../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:319, ../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:320, ../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:321, ../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:322
|
2715 |
msgid "Bolivia"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:323
|
2719 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:324, ../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:325, ../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:326, ../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:327, ../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:328, ../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:329
|
2743 |
msgid "British Virgin Islands"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:330
|
2747 |
msgid "Brunei"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:331, ../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:332, ../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:333, ../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:334, ../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:335, ../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:336, ../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:337
|
2775 |
msgid "Cape Verde"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:338, ../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:339, ../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:340, ../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:341, ../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:342, ../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:343, ../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:344
|
2803 |
msgid "Cocos Islands"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:345, ../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:346, ../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:347, ../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:348, ../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:349, ../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:350, ../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:351, ../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:352, ../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:353, ../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:354
|
2843 |
msgid "Democratic Republic of the Congo"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:355, ../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:356, ../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:357, ../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:358, ../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:359
|
2863 |
msgid "East Timor"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:360, ../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:361, ../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:362, ../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:363, ../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:364, ../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:365, ../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:366, ../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:367
|
2895 |
msgid "Falkland Islands"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:368, ../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:369, ../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:370, ../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:371, ../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:372, ../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:373, ../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:374, ../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:375, ../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:376, ../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:377, ../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:378, ../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:379, ../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:380, ../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:381, ../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:382, ../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:383, ../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:384, ../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:385, ../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:386, ../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:387, ../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:388, ../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:389, ../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:390, ../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:391, ../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:392, ../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:393, ../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:394, ../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:395, ../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:396, ../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:397, ../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:398, ../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:399
|
3023 |
msgid "Iran"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:400, ../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:401, ../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:402, ../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:403, ../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:404, ../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:405
|
3047 |
msgid "Ivory Coast"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:406, ../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:407, ../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:408, ../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:409, ../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:410, ../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:411, ../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:412, ../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:413
|
3079 |
msgid "Kosovo"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:414, ../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:415, ../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:416
|
3091 |
msgid "Laos"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:417, ../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:418, ../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:419, ../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:420, ../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:421, ../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:422, ../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:423, ../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:424, ../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:425, ../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:426
|
3131 |
msgid "Macedonia"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:427, ../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:428, ../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:429, ../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:430, ../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:431, ../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:432, ../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:433, ../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:434, ../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:435, ../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:436, ../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:437, ../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:438, ../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:439
|
3183 |
msgid "Micronesia"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:440
|
3187 |
msgid "Moldova"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:441, ../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:442, ../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:443, ../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:444, ../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:445, ../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:446, ../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:447, ../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:448, ../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:449, ../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:450, ../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:451, ../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:452, ../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:453, ../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:454, ../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:455, ../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:456, ../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:457, ../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:458, ../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:459
|
3263 |
msgid "North Korea"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:460, ../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:461, ../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:462, ../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:463, ../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:464, ../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:465
|
3287 |
msgid "Palestinian Territory"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:466, ../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:467, ../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:468, ../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:469, ../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:470, ../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:471, ../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:472, ../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:473, ../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:474, ../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:475, ../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:476
|
3331 |
msgid "Republic of the Congo"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:477, ../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:478, ../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:479
|
3343 |
msgid "Russia"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:480, ../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:481, ../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:482
|
3355 |
msgid "Saint Helena"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:483, ../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:484, ../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:485
|
3367 |
msgid "Saint Martin"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:486, ../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:487, ../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:488, ../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:489, ../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:490, ../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:491, ../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:492, ../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:493, ../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:494, ../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:495, ../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:496, ../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:497
|
3415 |
msgid "Sint Maarten"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:498, ../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:499, ../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:500, ../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:501, ../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:502, ../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:503, ../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:504
|
3443 |
msgid "South Korea"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:505, ../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:506, ../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:507, ../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:508, ../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:509, ../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:510, ../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:511, ../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:512, ../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:513, ../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:514
|
3483 |
msgid "Syria"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:515
|
3487 |
msgid "Taiwan"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:516, ../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:517
|
3495 |
msgid "Tanzania"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:518, ../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:519, ../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:520, ../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:521, ../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:522, ../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:523, ../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:524, ../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:525, ../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:526, ../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:527, ../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:528
|
3539 |
msgid "U.S. Virgin Islands"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:529, ../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:530, ../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:531, ../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:532, ../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:533, ../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:534, ../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:535, ../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:536, ../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:537, ../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:538
|
3579 |
msgid "Vatican"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:539
|
3583 |
msgid "Venezuela"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:540
|
3587 |
msgid "Vietnam"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:541, ../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:542, ../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:543, ../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:544, ../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:545, ../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:578
|
3611 |
msgid "Albania Lek"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:579
|
3615 |
msgid "Afghanistan Afghani"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:580
|
3619 |
msgid "Argentina Peso"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:582
|
3623 |
msgid "Australia Dollar"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:583
|
3627 |
msgid "Azerbaijan New Manat"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:584
|
3631 |
msgid "Bahamas Dollar"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:585
|
3635 |
msgid "Barbados Dollar"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:586
|
3639 |
msgid "Bangladeshi taka"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:587
|
3643 |
msgid "Belarus Ruble"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:588
|
3647 |
msgid "Belize Dollar"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:589
|
3651 |
msgid "Bermuda Dollar"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:590
|
3655 |
msgid "Bolivia Boliviano"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:591
|
3659 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:592
|
3663 |
msgid "Botswana Pula"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:593
|
3667 |
msgid "Bulgaria Lev"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:594
|
3671 |
msgid "Brazil Real"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:595
|
3675 |
msgid "Brunei Darussalam Dollar"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:596
|
3679 |
msgid "Cambodia Riel"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:597
|
3683 |
msgid "Canada Dollar"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:598
|
3687 |
msgid "Cayman Islands Dollar"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:599
|
3691 |
msgid "Chile Peso"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:600
|
3695 |
msgid "China Yuan Renminbi"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:601
|
3699 |
msgid "Colombia Peso"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:602
|
3703 |
msgid "Costa Rica Colon"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:603
|
3707 |
msgid "Croatia Kuna"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:604
|
3711 |
msgid "Cuba Peso"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:605
|
3715 |
msgid "Czech Republic Koruna"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:606
|
3719 |
msgid "Denmark Krone"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:607
|
3723 |
msgid "Dominican Republic Peso"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:608
|
3727 |
msgid "East Caribbean Dollar"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:609
|
3731 |
msgid "Egypt Pound"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:610
|
3735 |
msgid "El Salvador Colon"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:611
|
3739 |
msgid "Estonia Kroon"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:612
|
3743 |
msgid "Euro"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:613
|
3747 |
msgid "Falkland Islands (Malvinas) Pound"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:614
|
3751 |
msgid "Fiji Dollar"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:615
|
3755 |
msgid "Ghana Cedis"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:616
|
3759 |
msgid "Gibraltar Pound"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:617
|
3763 |
msgid "Guatemala Quetzal"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:618
|
3767 |
msgid "Guernsey Pound"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:619
|
3771 |
msgid "Guyana Dollar"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:620
|
3775 |
msgid "Honduras Lempira"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:621
|
3779 |
msgid "Hong Kong Dollar"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:622
|
3783 |
msgid "Hungary Forint"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:623
|
3787 |
msgid "Iceland Krona"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:624
|
3791 |
msgid "India Rupee"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:625
|
3795 |
msgid "Indonesia Rupiah"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:626
|
3799 |
msgid "Iran Rial"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:627
|
3803 |
msgid "Isle of Man Pound"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:628
|
3807 |
msgid "Israel Shekel"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:629
|
3811 |
msgid "Jamaica Dollar"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:630
|
3815 |
msgid "Japan Yen"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:631
|
3819 |
msgid "Jersey Pound"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:632
|
3823 |
msgid "Kazakhstan Tenge"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:633
|
3827 |
msgid "Korea (North) Won"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:634
|
3831 |
msgid "Korea (South) Won"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:635
|
3835 |
msgid "Kyrgyzstan Som"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:636
|
3839 |
msgid "Laos Kip"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:637
|
3843 |
msgid "Latvia Lat"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:638
|
3847 |
msgid "Lebanon Pound"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:639
|
3851 |
msgid "Liberia Dollar"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:640
|
3855 |
msgid "Lithuania Litas"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:641
|
3859 |
msgid "Macedonia Denar"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:642
|
3863 |
msgid "Malaysia Ringgit"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:643
|
3867 |
msgid "Mauritius Rupee"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:644
|
3871 |
msgid "Mexico Peso"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:645
|
3875 |
msgid "Mongolia Tughrik"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:646
|
3879 |
msgid "Mozambique Metical"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:647
|
3883 |
msgid "Namibia Dollar"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:648
|
3887 |
msgid "Nepal Rupee"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:649
|
3891 |
msgid "Netherlands Antilles Guilder"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:650
|
3895 |
msgid "New Zealand Dollar"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:651
|
3899 |
msgid "Nicaragua Cordoba"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:652
|
3903 |
msgid "Nigeria Naira"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:653
|
3907 |
msgid "Norway Krone"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:654
|
3911 |
msgid "Oman Rial"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:655
|
3915 |
msgid "Pakistan Rupee"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:656
|
3919 |
msgid "Panama Balboa"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:657
|
3923 |
msgid "Paraguay Guarani"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:658
|
3927 |
msgid "Peru Nuevo Sol"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:659
|
3931 |
msgid "Philippines Peso"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:660
|
3935 |
msgid "Poland Zloty"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:661
|
3939 |
msgid "Qatar Riyal"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:662
|
3943 |
msgid "Romania New Leu"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:663
|
3947 |
msgid "Russia Ruble"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:664
|
3951 |
msgid "Saint Helena Pound"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:665
|
3955 |
msgid "Saudi Arabia Riyal"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:666
|
3959 |
msgid "Serbia Dinar"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:667
|
3963 |
msgid "Seychelles Rupee"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:668
|
3967 |
msgid "Singapore Dollar"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:669
|
3971 |
msgid "Solomon Islands Dollar"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:670
|
3975 |
msgid "Somalia Shilling"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:671
|
3979 |
msgid "South Africa Rand"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:672
|
3983 |
msgid "Sri Lanka Rupee"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:673
|
3987 |
msgid "Sweden Krona"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:674
|
3991 |
msgid "Switzerland Franc"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:675
|
3995 |
msgid "Suriname Dollar"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:676
|
3999 |
msgid "Syria Pound"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:677
|
4003 |
msgid "Taiwan New Dollar"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:678
|
4007 |
msgid "Thailand Baht"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:679
|
4011 |
msgid "Trinidad and Tobago Dollar"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:680, ../profile-builder-2.0/admin/manage-fields.php:681
|
4015 |
msgid "Turkey Lira"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:682
|
4019 |
msgid "Tuvalu Dollar"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:683
|
4023 |
msgid "Ukraine Hryvna"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:684
|
4027 |
msgid "United Kingdom Pound"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:685
|
4031 |
msgid "Uganda Shilling"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:686
|
4035 |
msgid "US Dollar"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:687
|
4039 |
msgid "Uruguay Peso"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:688
|
4043 |
msgid "Uzbekistan Som"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:689
|
4047 |
msgid "Venezuela Bolivar"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:690
|
4051 |
msgid "Viet Nam Dong"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:691
|
4055 |
msgid "Yemen Rial"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:692
|
4059 |
msgid "Zimbabwe Dollar"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:994, ../profile-builder-2.0/admin/manage-fields.php:1151
|
4063 |
msgid ""
|
4064 |
"You must select a field\n"
|
4065 |
""
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1004
|
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:1015
|
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:1018
|
4081 |
msgid ""
|
4082 |
"The entered avatar size is not numerical\n"
|
4083 |
""
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1026
|
4087 |
msgid ""
|
4088 |
"The entered row number is not numerical\n"
|
4089 |
""
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1029
|
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:1037
|
4099 |
msgid ""
|
4100 |
"You must enter the site key\n"
|
4101 |
""
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1039
|
4105 |
msgid ""
|
4106 |
"You must enter the secret key\n"
|
4107 |
""
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1050
|
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:1053
|
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:1069
|
4123 |
msgid ""
|
4124 |
"The meta-name cannot be empty\n"
|
4125 |
""
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1081, ../profile-builder-2.0/admin/manage-fields.php:1089, ../profile-builder-2.0/admin/manage-fields.php:1100
|
4129 |
msgid ""
|
4130 |
"That meta-name is already in use\n"
|
4131 |
""
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1111
|
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:1131
|
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:1135
|
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:1142
|
4153 |
msgid ""
|
4154 |
"Please select at least one user role\n"
|
4155 |
""
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1158
|
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:1207
|
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:1222
|
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:1231
|
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:1233
|
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:1328
|
4181 |
msgid "Search Location"
|
4182 |
msgstr ""
|
4183 |
|
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:257
|
4321 |
+
msgid "GDPR Checkbox"
|
4322 |
+
msgstr ""
|
4323 |
+
|
4324 |
+
#: ../profile-builder-2.0/features/functions.php:257
|
4325 |
+
msgid "I allow the website to collect and store the data I submit through this form."
|
4326 |
+
msgstr ""
|
4327 |
+
|
4328 |
+
#: ../profile-builder-2.0/features/functions.php:542
|
4329 |
msgid "Strength indicator"
|
4330 |
msgstr ""
|
4331 |
|
4332 |
+
#: ../profile-builder-2.0/features/functions.php:568, ../profile-builder-2.0/features/functions.php:592
|
4333 |
msgid "Very Weak"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
+
#: ../profile-builder-2.0/features/functions.php:582
|
4337 |
msgid "Minimum length of %d characters."
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: ../profile-builder-2.0/features/functions.php:593
|
4341 |
msgid "The password must have a minimum strength of %s."
|
4342 |
msgstr ""
|
4343 |
|
4344 |
+
#: ../profile-builder-2.0/features/functions.php:670
|
4345 |
msgid "This field is required"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
+
#: ../profile-builder-2.0/features/functions.php:708, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:461, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:470, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:523, ../profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:568
|
4349 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
+
#: ../profile-builder-2.0/features/functions.php:715
|
4353 |
msgid "Incorrect phone number"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: ../profile-builder-2.0/features/functions.php:727, ../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
|
4357 |
msgid "Save Changes"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
+
#: ../profile-builder-2.0/features/functions.php:755, ../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
|
4361 |
msgid "Content"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: ../profile-builder-2.0/features/functions.php:766
|
4365 |
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"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: ../profile-builder-2.0/features/functions.php:770
|
4369 |
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"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: ../profile-builder-2.0/features/functions.php:935
|
4373 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: ../profile-builder-2.0/features/functions.php:948
|
4377 |
msgid "<br><br>You can visit your site at "
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: ../profile-builder-2.0/features/functions.php:1034
|
4381 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4382 |
msgstr ""
|
4383 |
|
4837 |
msgid "This field has conditional logic enabled."
|
4838 |
msgstr ""
|
4839 |
|
4840 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-functions.php:44
|
4841 |
msgid "You must be logged in to view this content."
|
4842 |
msgstr ""
|
4843 |
|
4844 |
+
#: ../profile-builder-2.0/features/content-restriction/content-restriction-functions.php:46
|
4845 |
msgid "This content is restricted for your user role."
|
4846 |
msgstr ""
|
4847 |
|