Version Description
- Usability improvements and some name changes
- Refactored manage fields dropdown to be more user friendly
- Added the GDPR field on the Edit Profile as well
Download this release
Release Info
| Developer | madalin.ungureanu |
| Plugin | |
| Version | 2.8.3 |
| Comparing to | |
| See all releases | |
Code changes from version 2.8.2 to 2.8.3
- admin/admin-functions.php +40 -0
- admin/manage-fields.php +101 -68
- assets/css/style-back-end.css +78 -1
- assets/js/jquery-manage-fields-live-change.js +27 -2
- assets/lib/class_notices.php +7 -0
- assets/lib/wck-api/fields/select.php +39 -35
- assets/lib/wck-api/wordpress-creation-kit.php +48 -0
- features/functions.php +3 -0
- front-end/default-fields/gdpr/gdpr.php +2 -2
- index.php +15 -4
- readme.txt +10 -4
- translation/profile-builder.catalog.php +7 -5
- translation/profile-builder.pot +661 -653
admin/admin-functions.php
CHANGED
|
@@ -208,6 +208,46 @@ function wppb_admin_rate_us( $footer_text ) {
|
|
| 208 |
}
|
| 209 |
add_filter('admin_footer_text','wppb_admin_rate_us');
|
| 210 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 211 |
/* In plugin notifications */
|
| 212 |
add_action( 'admin_init', 'wppb_add_plugin_notifications' );
|
| 213 |
function wppb_add_plugin_notifications() {
|
| 208 |
}
|
| 209 |
add_filter('admin_footer_text','wppb_admin_rate_us');
|
| 210 |
|
| 211 |
+
/**
|
| 212 |
+
* add links on plugin page
|
| 213 |
+
*/
|
| 214 |
+
add_filter( 'plugin_action_links', 'wppb_plugin_action_links', 10, 2 );
|
| 215 |
+
function wppb_plugin_action_links( $links, $file ) {
|
| 216 |
+
if ( $file != WPPB_PLUGIN_BASENAME ) {
|
| 217 |
+
return $links;
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
| 221 |
+
return $links;
|
| 222 |
+
}
|
| 223 |
+
|
| 224 |
+
$settings_link = sprintf( '<a href="%1$s">%2$s</a>',
|
| 225 |
+
menu_page_url( 'profile-builder-general-settings', false ),
|
| 226 |
+
esc_html( __( 'Settings', 'profile-builder' ) ) );
|
| 227 |
+
|
| 228 |
+
array_unshift( $links, $settings_link );
|
| 229 |
+
|
| 230 |
+
return $links;
|
| 231 |
+
}
|
| 232 |
+
|
| 233 |
+
/**
|
| 234 |
+
* add links on plugin page
|
| 235 |
+
*/
|
| 236 |
+
add_filter( 'plugin_row_meta', 'wppb_plugin_row_meta', 10, 2 );
|
| 237 |
+
function wppb_plugin_row_meta( $links, $file ) {
|
| 238 |
+
if ( WPPB_PLUGIN_BASENAME == $file ) {
|
| 239 |
+
$row_meta = array(
|
| 240 |
+
'docs' => '<a href="' . esc_url( 'https://www.cozmoslabs.com/docs/profile-builder-2/' ) . '" target="_blank" aria-label="' . esc_attr__( 'View Profile Builder documentation', 'profile-builder' ) . '">' . esc_html__( 'Docs', 'profile-builder' ) . '</a>',
|
| 241 |
+
);
|
| 242 |
+
|
| 243 |
+
return array_merge( $links, $row_meta );
|
| 244 |
+
}
|
| 245 |
+
|
| 246 |
+
return (array) $links;
|
| 247 |
+
}
|
| 248 |
+
|
| 249 |
+
|
| 250 |
+
|
| 251 |
/* In plugin notifications */
|
| 252 |
add_action( 'admin_init', 'wppb_add_plugin_notifications' );
|
| 253 |
function wppb_add_plugin_notifications() {
|
admin/manage-fields.php
CHANGED
|
@@ -9,8 +9,8 @@
|
|
| 9 |
function wppb_manage_fields_submenu(){
|
| 10 |
// create a new sub_menu page which holds the data for the default + extra fields
|
| 11 |
$args = array(
|
| 12 |
-
'menu_title' => __('
|
| 13 |
-
'page_title' => __('Manage
|
| 14 |
'menu_slug' => 'manage-fields',
|
| 15 |
'page_type' => 'submenu_page',
|
| 16 |
'capability' => 'manage_options',
|
|
@@ -22,67 +22,96 @@ function wppb_manage_fields_submenu(){
|
|
| 22 |
add_action( 'admin_menu', 'wppb_manage_fields_submenu', 1 );
|
| 23 |
|
| 24 |
function wppb_populate_manage_fields(){
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
|
|
|
|
|
|
|
|
|
| 54 |
|
| 55 |
-
|
| 56 |
-
|
|
|
|
| 57 |
|
| 58 |
if( PROFILE_BUILDER != 'Profile Builder Free' ) {
|
| 59 |
-
$manage_field_types[] = 'Heading';
|
| 60 |
-
$manage_field_types[] = 'Input';
|
| 61 |
-
$manage_field_types[] = 'Number';
|
| 62 |
-
$manage_field_types[] = 'Input (Hidden)';
|
| 63 |
-
$manage_field_types[] = 'Textarea';
|
| 64 |
-
$manage_field_types[] = 'WYSIWYG';
|
| 65 |
-
$manage_field_types[] = '
|
| 66 |
-
$manage_field_types[] = 'Select';
|
| 67 |
-
$manage_field_types[] = '
|
| 68 |
-
$manage_field_types[] = '
|
| 69 |
-
$manage_field_types[] = '
|
| 70 |
-
$manage_field_types[] = '
|
| 71 |
-
$manage_field_types[] = '
|
| 72 |
-
|
| 73 |
-
$manage_field_types[] = '
|
| 74 |
-
$manage_field_types[] = '
|
| 75 |
-
$manage_field_types[] = '
|
| 76 |
-
$manage_field_types[] = '
|
| 77 |
-
$manage_field_types[] = '
|
| 78 |
-
$manage_field_types[] = '
|
| 79 |
-
$manage_field_types[] = '
|
| 80 |
-
$manage_field_types[] = '
|
| 81 |
-
$manage_field_types[] = '
|
| 82 |
-
$manage_field_types[] = '
|
|
|
|
| 83 |
}
|
| 84 |
-
|
| 85 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
//Free to Pro call to action on Manage Fields page
|
| 87 |
$field_description = __('Choose one of the supported field types','profile-builder');
|
| 88 |
if( PROFILE_BUILDER == 'Profile Builder Free' ) {
|
|
@@ -178,7 +207,7 @@ function wppb_populate_manage_fields(){
|
|
| 178 |
// create the new submenu with the above options
|
| 179 |
$args = array(
|
| 180 |
'metabox_id' => 'manage-fields',
|
| 181 |
-
'metabox_title' => __( 'Field Properties', 'profile-builder' ),
|
| 182 |
'post_type' => 'manage-fields',
|
| 183 |
'meta_name' => 'wppb_manage_fields',
|
| 184 |
'meta_array' => $fields,
|
|
@@ -192,7 +221,7 @@ function wppb_populate_manage_fields(){
|
|
| 192 |
// create the info side meta-box
|
| 193 |
$args = array(
|
| 194 |
'metabox_id' => 'manage-fields-info',
|
| 195 |
-
'metabox_title' => __( 'Registration & Edit Profile', 'profile-builder' ),
|
| 196 |
'post_type' => 'manage-fields',
|
| 197 |
'meta_name' => 'wppb_manage_fields_info',
|
| 198 |
'meta_array' => '',
|
|
@@ -1165,7 +1194,7 @@ add_filter( 'wck_extra_message', 'wppb_check_field_on_edit_add', 10, 6 );
|
|
| 1165 |
|
| 1166 |
|
| 1167 |
/**
|
| 1168 |
-
* Function that calls the wppb_hide_properties_for_already_added_fields after a field-update
|
| 1169 |
*
|
| 1170 |
* @since v.2.0
|
| 1171 |
*
|
|
@@ -1175,13 +1204,14 @@ add_filter( 'wck_extra_message', 'wppb_check_field_on_edit_add', 10, 6 );
|
|
| 1175 |
*/
|
| 1176 |
function wppb_manage_fields_after_refresh_list( $id ){
|
| 1177 |
echo "<script type=\"text/javascript\">wppb_hide_properties_for_already_added_fields( '#container_wppb_manage_fields' );</script>";
|
|
|
|
|
|
|
| 1178 |
}
|
| 1179 |
add_action( "wck_refresh_list_wppb_manage_fields", "wppb_manage_fields_after_refresh_list" );
|
| 1180 |
add_action( "wck_refresh_entry_wppb_manage_fields", "wppb_manage_fields_after_refresh_list" );
|
| 1181 |
|
| 1182 |
-
|
| 1183 |
/**
|
| 1184 |
-
* Function that calls the wppb_hide_all
|
| 1185 |
*
|
| 1186 |
* @since v.2.0
|
| 1187 |
*
|
|
@@ -1189,10 +1219,11 @@ add_action( "wck_refresh_entry_wppb_manage_fields", "wppb_manage_fields_after_re
|
|
| 1189 |
*
|
| 1190 |
* @return string
|
| 1191 |
*/
|
| 1192 |
-
function
|
| 1193 |
echo "<script type=\"text/javascript\">wppb_hide_all( '#wppb_manage_fields' );</script>";
|
|
|
|
| 1194 |
}
|
| 1195 |
-
add_action("wck_ajax_add_form_wppb_manage_fields", "
|
| 1196 |
|
| 1197 |
/**
|
| 1198 |
* Function that modifies the table header in Manage Fields to add Field Name, Field Type, Meta Key, Required
|
|
@@ -1230,7 +1261,7 @@ function wppb_add_content_before_manage_fields(){
|
|
| 1230 |
if( PROFILE_BUILDER == 'Profile Builder Pro' )
|
| 1231 |
_e("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.", 'profile-builder');
|
| 1232 |
else
|
| 1233 |
-
_e( "With Profile Builder Pro
|
| 1234 |
?>
|
| 1235 |
</p>
|
| 1236 |
<?php
|
|
@@ -1251,8 +1282,10 @@ function wppb_remove_properties_from_added_form( $meta_name, $id, $element_id ){
|
|
| 1251 |
if ( ( $meta_name == 'wppb_epf_fields' ) || ( $meta_name == 'wppb_rf_fields' ) )
|
| 1252 |
echo "<script type=\"text/javascript\">wppb_disable_delete_on_default_mandatory_fields();</script>";
|
| 1253 |
|
| 1254 |
-
if ( $meta_name == 'wppb_manage_fields' )
|
| 1255 |
-
echo "<script type=\"text/javascript\">wppb_edit_form_properties( '#container_wppb_manage_fields', 'update_container_wppb_manage_fields_"
|
|
|
|
|
|
|
| 1256 |
}
|
| 1257 |
add_action("wck_after_adding_form", "wppb_remove_properties_from_added_form", 10, 3);
|
| 1258 |
|
| 9 |
function wppb_manage_fields_submenu(){
|
| 10 |
// create a new sub_menu page which holds the data for the default + extra fields
|
| 11 |
$args = array(
|
| 12 |
+
'menu_title' => __('Form Fields', 'profile-builder'),
|
| 13 |
+
'page_title' => __('Manage Form Fields', 'profile-builder'),
|
| 14 |
'menu_slug' => 'manage-fields',
|
| 15 |
'page_type' => 'submenu_page',
|
| 16 |
'capability' => 'manage_options',
|
| 22 |
add_action( 'admin_menu', 'wppb_manage_fields_submenu', 1 );
|
| 23 |
|
| 24 |
function wppb_populate_manage_fields(){
|
| 25 |
+
|
| 26 |
+
$manage_field_types = array(
|
| 27 |
+
'optgroups' => array(
|
| 28 |
+
'default' =>
|
| 29 |
+
array(
|
| 30 |
+
'label' => __('Default'),
|
| 31 |
+
'options' => array(
|
| 32 |
+
'Default - Name (Heading)',
|
| 33 |
+
'Default - Contact Info (Heading)',
|
| 34 |
+
'Default - About Yourself (Heading)',
|
| 35 |
+
'Default - Username',
|
| 36 |
+
'Default - First Name',
|
| 37 |
+
'Default - Last Name',
|
| 38 |
+
'Default - Nickname',
|
| 39 |
+
'Default - E-mail',
|
| 40 |
+
'Default - Website',
|
| 41 |
+
'Default - Password',
|
| 42 |
+
'Default - Repeat Password',
|
| 43 |
+
'Default - Biographical Info',
|
| 44 |
+
'Default - Display name publicly as',
|
| 45 |
+
),
|
| 46 |
+
),
|
| 47 |
+
'standard' =>
|
| 48 |
+
array(
|
| 49 |
+
'label' => __('Standard'),
|
| 50 |
+
'options' => array(),
|
| 51 |
+
),
|
| 52 |
+
'advanced' =>
|
| 53 |
+
array(
|
| 54 |
+
'label' => __('Advanced'),
|
| 55 |
+
'options' => array(),
|
| 56 |
+
),
|
| 57 |
+
'other' =>
|
| 58 |
+
array(
|
| 59 |
+
'label' => __('Other'),
|
| 60 |
+
'options' => array(
|
| 61 |
+
'GDPR Checkbox', // since 2.8.2
|
| 62 |
+
),
|
| 63 |
+
),
|
| 64 |
+
),
|
| 65 |
+
);
|
| 66 |
|
| 67 |
+
// Default contact methods were removed in WP 3.6. A filter dictates contact methods.
|
| 68 |
+
if ( apply_filters( 'wppb_remove_default_contact_methods', get_site_option( 'initial_db_version' ) < 23588 ) ){
|
| 69 |
+
$manage_field_types['optgroups']['default']['options'][] = 'Default - AIM';
|
| 70 |
+
$manage_field_types['optgroups']['default']['options'][] = 'Default - Yahoo IM';
|
| 71 |
+
$manage_field_types['optgroups']['default']['options'][] = 'Default - Jabber / Google Talk';
|
| 72 |
+
}
|
| 73 |
|
| 74 |
+
if ( wppb_can_users_signup_blog() ) {
|
| 75 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Default - Blog Details';
|
| 76 |
+
}
|
| 77 |
|
| 78 |
if( PROFILE_BUILDER != 'Profile Builder Free' ) {
|
| 79 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Heading';
|
| 80 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Input';
|
| 81 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Number';
|
| 82 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Input (Hidden)';
|
| 83 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Textarea';
|
| 84 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'WYSIWYG';
|
| 85 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Select';
|
| 86 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Select (Multiple)';
|
| 87 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Checkbox';
|
| 88 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Radio';
|
| 89 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'HTML';
|
| 90 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Upload';
|
| 91 |
+
$manage_field_types['optgroups']['standard']['options'][] = 'Avatar';
|
| 92 |
+
|
| 93 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Phone';
|
| 94 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Select (Country)';
|
| 95 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Select (Timezone)';
|
| 96 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Select (Currency)';
|
| 97 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Select (CPT)';
|
| 98 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Checkbox (Terms and Conditions)';
|
| 99 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Datepicker';
|
| 100 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Timepicker';
|
| 101 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Colorpicker';
|
| 102 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Validation';
|
| 103 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Map';
|
| 104 |
}
|
| 105 |
+
|
| 106 |
+
/* added recaptcha and user role field since version 2.6.2 */
|
| 107 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'reCAPTCHA';
|
| 108 |
+
$manage_field_types['optgroups']['advanced']['options'][] = 'Select (User Role)';
|
| 109 |
+
|
| 110 |
+
|
| 111 |
+
$manage_field_types['optgroups']['other']['options'] = apply_filters( 'wppb_manage_fields_types', $manage_field_types['optgroups']['other']['options'] );
|
| 112 |
+
|
| 113 |
+
$manage_field_types = apply_filters( 'wppb_all_manage_fields_types', $manage_field_types );
|
| 114 |
+
|
| 115 |
//Free to Pro call to action on Manage Fields page
|
| 116 |
$field_description = __('Choose one of the supported field types','profile-builder');
|
| 117 |
if( PROFILE_BUILDER == 'Profile Builder Free' ) {
|
| 207 |
// create the new submenu with the above options
|
| 208 |
$args = array(
|
| 209 |
'metabox_id' => 'manage-fields',
|
| 210 |
+
'metabox_title' => __( 'Form Field Properties', 'profile-builder' ),
|
| 211 |
'post_type' => 'manage-fields',
|
| 212 |
'meta_name' => 'wppb_manage_fields',
|
| 213 |
'meta_array' => $fields,
|
| 221 |
// create the info side meta-box
|
| 222 |
$args = array(
|
| 223 |
'metabox_id' => 'manage-fields-info',
|
| 224 |
+
'metabox_title' => __( 'Registration & Edit Profile Forms', 'profile-builder' ),
|
| 225 |
'post_type' => 'manage-fields',
|
| 226 |
'meta_name' => 'wppb_manage_fields_info',
|
| 227 |
'meta_array' => '',
|
| 1194 |
|
| 1195 |
|
| 1196 |
/**
|
| 1197 |
+
* Function that calls the wppb_hide_properties_for_already_added_fields and wppb_enable_select2 after a field-update
|
| 1198 |
*
|
| 1199 |
* @since v.2.0
|
| 1200 |
*
|
| 1204 |
*/
|
| 1205 |
function wppb_manage_fields_after_refresh_list( $id ){
|
| 1206 |
echo "<script type=\"text/javascript\">wppb_hide_properties_for_already_added_fields( '#container_wppb_manage_fields' );</script>";
|
| 1207 |
+
echo "<script type=\"text/javascript\">wppb_enable_select2( '#wppb_manage_fields' );</script>";
|
| 1208 |
+
|
| 1209 |
}
|
| 1210 |
add_action( "wck_refresh_list_wppb_manage_fields", "wppb_manage_fields_after_refresh_list" );
|
| 1211 |
add_action( "wck_refresh_entry_wppb_manage_fields", "wppb_manage_fields_after_refresh_list" );
|
| 1212 |
|
|
|
|
| 1213 |
/**
|
| 1214 |
+
* Function that calls the wppb_hide_all and wppb_enable_select2
|
| 1215 |
*
|
| 1216 |
* @since v.2.0
|
| 1217 |
*
|
| 1219 |
*
|
| 1220 |
* @return string
|
| 1221 |
*/
|
| 1222 |
+
function wppb_manage_fields_after_ajax_add_field( $id ){
|
| 1223 |
echo "<script type=\"text/javascript\">wppb_hide_all( '#wppb_manage_fields' );</script>";
|
| 1224 |
+
echo "<script type=\"text/javascript\">wppb_enable_select2( '#wppb_manage_fields' );</script>";
|
| 1225 |
}
|
| 1226 |
+
add_action("wck_ajax_add_form_wppb_manage_fields", "wppb_manage_fields_after_ajax_add_field" );
|
| 1227 |
|
| 1228 |
/**
|
| 1229 |
* Function that modifies the table header in Manage Fields to add Field Name, Field Type, Meta Key, Required
|
| 1261 |
if( PROFILE_BUILDER == 'Profile Builder Pro' )
|
| 1262 |
_e("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.", 'profile-builder');
|
| 1263 |
else
|
| 1264 |
+
_e( "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module.", "profile-builder" )
|
| 1265 |
?>
|
| 1266 |
</p>
|
| 1267 |
<?php
|
| 1282 |
if ( ( $meta_name == 'wppb_epf_fields' ) || ( $meta_name == 'wppb_rf_fields' ) )
|
| 1283 |
echo "<script type=\"text/javascript\">wppb_disable_delete_on_default_mandatory_fields();</script>";
|
| 1284 |
|
| 1285 |
+
if ( $meta_name == 'wppb_manage_fields' ) {
|
| 1286 |
+
echo "<script type=\"text/javascript\">wppb_edit_form_properties( '#container_wppb_manage_fields', 'update_container_wppb_manage_fields_" . $element_id . "' );</script>";
|
| 1287 |
+
echo "<script type=\"text/javascript\">wppb_enable_select2( '#container_wppb_manage_fields' );</script>";
|
| 1288 |
+
}
|
| 1289 |
}
|
| 1290 |
add_action("wck_after_adding_form", "wppb_remove_properties_from_added_form", 10, 3);
|
| 1291 |
|
assets/css/style-back-end.css
CHANGED
|
@@ -691,4 +691,81 @@ div.wppb-notice .notice-dismiss {
|
|
| 691 |
|
| 692 |
.wrap div.wppb-admin-notice {
|
| 693 |
margin-bottom: 0;
|
| 694 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 691 |
|
| 692 |
.wrap div.wppb-admin-notice {
|
| 693 |
margin-bottom: 0;
|
| 694 |
+
}
|
| 695 |
+
|
| 696 |
+
|
| 697 |
+
/**************************************************/
|
| 698 |
+
/* Extra styling for select 2 manage fields
|
| 699 |
+
/**************************************************/
|
| 700 |
+
|
| 701 |
+
.profile-builder_page_manage-fields select#field{
|
| 702 |
+
width: 100%;
|
| 703 |
+
}
|
| 704 |
+
/* maybe take this out after a while. we need to keep it because of translatepress but after the tp update it is not required */
|
| 705 |
+
.profile-builder_page_manage-fields span.select2-container{
|
| 706 |
+
width:100% !important;
|
| 707 |
+
}
|
| 708 |
+
|
| 709 |
+
.profile-builder_page_manage-fields .select2-selection.select2-selection--single{
|
| 710 |
+
outline: 0;
|
| 711 |
+
}
|
| 712 |
+
|
| 713 |
+
#wppb_select2_overlay{
|
| 714 |
+
display: none;
|
| 715 |
+
position: fixed;
|
| 716 |
+
top: 0;
|
| 717 |
+
left: 0;
|
| 718 |
+
width: 100%;
|
| 719 |
+
height: 100%;
|
| 720 |
+
background-color: #000;
|
| 721 |
+
filter:alpha(opacity=50);
|
| 722 |
+
-moz-opacity:0.5;
|
| 723 |
+
-khtml-opacity: 0.5;
|
| 724 |
+
opacity: 0.5;
|
| 725 |
+
z-index: 1000;
|
| 726 |
+
}
|
| 727 |
+
|
| 728 |
+
.profile-builder_page_manage-fields .select2-container{
|
| 729 |
+
z-index: 1051;
|
| 730 |
+
}
|
| 731 |
+
|
| 732 |
+
.profile-builder_page_manage-fields .select2-container--default .select2-selection--single .select2-selection__placeholder{
|
| 733 |
+
color: #111;
|
| 734 |
+
font-size: 15px;
|
| 735 |
+
}
|
| 736 |
+
.profile-builder_page_manage-fields .select2-container .select2-selection--single{
|
| 737 |
+
height: 38px;
|
| 738 |
+
}
|
| 739 |
+
.profile-builder_page_manage-fields .select2-container .select2-selection--single .select2-selection__rendered{
|
| 740 |
+
line-height: 38px;
|
| 741 |
+
}
|
| 742 |
+
.profile-builder_page_manage-fields .select2-container--default .select2-selection--single .select2-selection__arrow{
|
| 743 |
+
height: 38px;
|
| 744 |
+
}
|
| 745 |
+
|
| 746 |
+
@media screen and ( min-width: 800px ) {
|
| 747 |
+
|
| 748 |
+
.profile-builder_page_manage-fields .select2-results__option[role="group"] {
|
| 749 |
+
width: 48%;
|
| 750 |
+
margin: 0 1%;
|
| 751 |
+
float: left;
|
| 752 |
+
}
|
| 753 |
+
|
| 754 |
+
.profile-builder_page_manage-fields .select2-container--default .select2-results > .select2-results__options,
|
| 755 |
+
.profile-builder_page_manage-fields .select2-results{
|
| 756 |
+
max-height: 800px;
|
| 757 |
+
}
|
| 758 |
+
}
|
| 759 |
+
@media screen and ( min-width: 1280px ) {
|
| 760 |
+
|
| 761 |
+
.profile-builder_page_manage-fields .select2-results__option[role="group"] {
|
| 762 |
+
width: 23%;
|
| 763 |
+
margin: 0 1%;
|
| 764 |
+
float: left;
|
| 765 |
+
}
|
| 766 |
+
|
| 767 |
+
.profile-builder_page_manage-fields .select2-container--default .select2-results > .select2-results__options,
|
| 768 |
+
.profile-builder_page_manage-fields .select2-results{
|
| 769 |
+
max-height: 800px;
|
| 770 |
+
}
|
| 771 |
+
}
|
assets/js/jquery-manage-fields-live-change.js
CHANGED
|
@@ -744,7 +744,7 @@ function wppb_handle_user_role_field( container_name ) {
|
|
| 744 |
|
| 745 |
function wppb_initialize_live_select( container_name ){
|
| 746 |
wppb_hide_all( container_name );
|
| 747 |
-
|
| 748 |
field = jQuery(this).val();
|
| 749 |
|
| 750 |
if ( field != ''){
|
|
@@ -756,10 +756,35 @@ function wppb_initialize_live_select( container_name ){
|
|
| 756 |
});
|
| 757 |
}
|
| 758 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 759 |
jQuery(function(){
|
| 760 |
wppb_initialize_live_select ( '#wppb_manage_fields' );
|
| 761 |
wppb_initialize_live_select ( '#container_wppb_manage_fields' );
|
| 762 |
|
| 763 |
wppb_hide_properties_for_already_added_fields( '#container_wppb_manage_fields' );
|
| 764 |
wppb_disable_add_entry_button ( '#wppb_manage_fields' );
|
| 765 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 744 |
|
| 745 |
function wppb_initialize_live_select( container_name ){
|
| 746 |
wppb_hide_all( container_name );
|
| 747 |
+
jQuery(document).on( 'change', container_name + ' ' + '.mb-list-entry-fields #field', function () {
|
| 748 |
field = jQuery(this).val();
|
| 749 |
|
| 750 |
if ( field != ''){
|
| 756 |
});
|
| 757 |
}
|
| 758 |
|
| 759 |
+
|
| 760 |
+
function wppb_enable_select2(container_name){
|
| 761 |
+
// Select2 initialization on manage fields.
|
| 762 |
+
|
| 763 |
+
jQuery( container_name + ' #field').select2({
|
| 764 |
+
placeholder: 'Select an option',
|
| 765 |
+
allowClear: true
|
| 766 |
+
})
|
| 767 |
+
|
| 768 |
+
var $eventSelect = jQuery( container_name + ' #field');
|
| 769 |
+
$eventSelect.on("select2:open", function (e) {
|
| 770 |
+
jQuery('#wppb_select2_overlay').fadeIn('100')
|
| 771 |
+
});
|
| 772 |
+
$eventSelect.on("select2:close", function (e) {
|
| 773 |
+
jQuery('#wppb_select2_overlay').hide();
|
| 774 |
+
});
|
| 775 |
+
}
|
| 776 |
+
|
| 777 |
+
|
| 778 |
jQuery(function(){
|
| 779 |
wppb_initialize_live_select ( '#wppb_manage_fields' );
|
| 780 |
wppb_initialize_live_select ( '#container_wppb_manage_fields' );
|
| 781 |
|
| 782 |
wppb_hide_properties_for_already_added_fields( '#container_wppb_manage_fields' );
|
| 783 |
wppb_disable_add_entry_button ( '#wppb_manage_fields' );
|
| 784 |
+
|
| 785 |
+
var overlay = jQuery('<div id="wppb_select2_overlay"> </div>')
|
| 786 |
+
overlay.appendTo(document.body)
|
| 787 |
+
|
| 788 |
+
wppb_enable_select2('#wppb_manage_fields');
|
| 789 |
+
|
| 790 |
+
});
|
assets/lib/class_notices.php
CHANGED
|
@@ -73,6 +73,7 @@ Class WPPB_Plugin_Notifications {
|
|
| 73 |
protected function __construct() {
|
| 74 |
add_action( 'admin_init', array( $this, 'dismiss_admin_notifications' ), 200 );
|
| 75 |
add_action( 'admin_init', array( $this, 'add_admin_menu_notification_counts' ), 1000 );
|
|
|
|
| 76 |
}
|
| 77 |
|
| 78 |
|
|
@@ -110,6 +111,12 @@ Class WPPB_Plugin_Notifications {
|
|
| 110 |
}
|
| 111 |
}
|
| 112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
/**
|
| 114 |
*
|
| 115 |
*
|
| 73 |
protected function __construct() {
|
| 74 |
add_action( 'admin_init', array( $this, 'dismiss_admin_notifications' ), 200 );
|
| 75 |
add_action( 'admin_init', array( $this, 'add_admin_menu_notification_counts' ), 1000 );
|
| 76 |
+
//add_action( 'admin_init', array( $this, 'remove_other_plugin_notices' ), 9999 );
|
| 77 |
}
|
| 78 |
|
| 79 |
|
| 111 |
}
|
| 112 |
}
|
| 113 |
|
| 114 |
+
/*function remove_other_plugin_notices(){
|
| 115 |
+
if( $this->is_plugin_page() ){
|
| 116 |
+
remove_all_actions('admin_notices');
|
| 117 |
+
}
|
| 118 |
+
}*/
|
| 119 |
+
|
| 120 |
/**
|
| 121 |
*
|
| 122 |
*
|
assets/lib/wck-api/fields/select.php
CHANGED
|
@@ -1,51 +1,55 @@
|
|
| 1 |
<?php
|
| 2 |
-
|
| 3 |
-
* @param array $details Contains the details for the field.
|
| 4 |
* @param string $value Contains input value;
|
| 5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
| 6 |
* @return string $element input element html string. */
|
| 7 |
-
|
| 8 |
$element .= '<select name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
| 9 |
if( !empty( $frontend_prefix ) )
|
| 10 |
-
|
| 11 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-select mb-field" >';
|
| 12 |
-
|
| 13 |
if( !empty( $details['default-option'] ) && $details['default-option'] )
|
| 14 |
-
|
| 15 |
|
| 16 |
$field_name = Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details );
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
$options = '';
|
| 19 |
-
if( !empty( $details['options'] ) ){
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
if( !empty( $details['values'] ) )
|
| 26 |
-
$value_attr = $details['values'][$i];
|
| 27 |
-
else
|
| 28 |
-
$value_attr = $option;
|
| 29 |
-
}
|
| 30 |
-
else{
|
| 31 |
-
$option_parts = explode( '%', $option );
|
| 32 |
-
if( !empty( $option_parts ) ){
|
| 33 |
-
if( empty( $option_parts[0] ) && count( $option_parts ) == 3 ){
|
| 34 |
-
$label = $option_parts[1];
|
| 35 |
-
if( !empty( $details['values'] ) )
|
| 36 |
-
$value_attr = $details['values'][$i];
|
| 37 |
-
else
|
| 38 |
-
$value_attr = $option_parts[2];
|
| 39 |
-
}
|
| 40 |
-
}
|
| 41 |
-
}
|
| 42 |
|
| 43 |
-
|
| 44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
|
| 46 |
-
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
| 48 |
}
|
| 49 |
-
|
|
|
|
| 50 |
$element .= '</select>';
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
<?php
|
| 2 |
+
/* @param string $meta Meta name.
|
| 3 |
+
* @param array $details Contains the details for the field.
|
| 4 |
* @param string $value Contains input value;
|
| 5 |
* @param string $context Context where the function is used. Depending on it some actions are preformed.;
|
| 6 |
* @return string $element input element html string. */
|
| 7 |
+
|
| 8 |
$element .= '<select name="'. $single_prefix . esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" id="';
|
| 9 |
if( !empty( $frontend_prefix ) )
|
| 10 |
+
$element .= $frontend_prefix;
|
| 11 |
$element .= esc_attr( Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details ) ) .'" class="mb-select mb-field" >';
|
| 12 |
+
|
| 13 |
if( !empty( $details['default-option'] ) && $details['default-option'] )
|
| 14 |
+
$element .= '<option value="">'. __('...Choose', 'profile-builder') .'</option>';
|
| 15 |
|
| 16 |
$field_name = Wordpress_Creation_Kit_PB::wck_generate_slug( $details['title'], $details );
|
| 17 |
|
| 18 |
+
// we're passing this further to a function. Need to make sure it exists so we don't get a notice.
|
| 19 |
+
if( empty( $details['value'] ) ){
|
| 20 |
+
$details['value'] = false;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
$options = '';
|
| 24 |
+
if( !empty( $details['options'] ) && !Wordpress_Creation_Kit_PB::wck_is_multi( $details['options'] ) ){
|
| 25 |
+
$i = 0;
|
| 26 |
+
foreach( $details['options'] as $option ){
|
| 27 |
+
|
| 28 |
+
$optionOutput = Wordpress_Creation_Kit_PB::wck_generate_select_option($option, $details['value'], $i, $value);
|
| 29 |
+
$options .= apply_filters( "wck_select_{$meta}_{$field_name}_option_{$i}", $optionOutput, $i);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
+
$i++;
|
| 32 |
+
}
|
| 33 |
+
} elseif( !empty( $details['options'] ) ){
|
| 34 |
+
$i = 0;
|
| 35 |
+
foreach($details['options']['optgroups'] as $optgroup){
|
| 36 |
+
if(!empty($optgroup['options'])) {
|
| 37 |
+
$options .= '<optgroup label="' . $optgroup['label'] . '">';
|
| 38 |
+
foreach($optgroup['options'] as $option ){
|
| 39 |
+
$optionOutput = Wordpress_Creation_Kit_PB::wck_generate_select_option($option, $details['value'], $i, $value);
|
| 40 |
+
$options .= apply_filters( "wck_select_{$meta}_{$field_name}_option_{$i}", $optionOutput, $i);
|
| 41 |
|
| 42 |
+
$i++;
|
| 43 |
+
}
|
| 44 |
+
$options .= '</optgroup>';
|
| 45 |
+
}
|
| 46 |
+
}
|
| 47 |
}
|
| 48 |
+
|
| 49 |
+
$element .= apply_filters( "wck_select_{$meta}_{$field_name}_options", $options );
|
| 50 |
$element .= '</select>';
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
|
assets/lib/wck-api/wordpress-creation-kit.php
CHANGED
|
@@ -544,6 +544,19 @@ class Wordpress_Creation_Kit_PB{
|
|
| 544 |
if ( (!is_array( $field_details ) && !isset( $field_details['options']) ) || empty( $value )){
|
| 545 |
return $value;
|
| 546 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 547 |
foreach( $field_details['options'] as $option ){
|
| 548 |
if ( strpos( $option, $value ) !== false ){
|
| 549 |
if( strpos( $option, '%' ) === false ){
|
|
@@ -1278,6 +1291,38 @@ class Wordpress_Creation_Kit_PB{
|
|
| 1278 |
static function wck_strip_script_tags(){
|
| 1279 |
|
| 1280 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1281 |
}
|
| 1282 |
|
| 1283 |
|
|
@@ -1489,4 +1534,7 @@ class WCK_Page_Creator_PB{
|
|
| 1489 |
<?php
|
| 1490 |
}
|
| 1491 |
}
|
|
|
|
|
|
|
|
|
|
| 1492 |
?>
|
| 544 |
if ( (!is_array( $field_details ) && !isset( $field_details['options']) ) || empty( $value )){
|
| 545 |
return $value;
|
| 546 |
}
|
| 547 |
+
|
| 548 |
+
//convert field_details to single array if option groups are defined.
|
| 549 |
+
if( Wordpress_Creation_Kit_PB::wck_is_multi( $field_details['options'] ) ){
|
| 550 |
+
$select_options = array();
|
| 551 |
+
foreach($field_details['options']['optgroups'] as $optgroup) {
|
| 552 |
+
foreach($optgroup['options'] as $group_option ){
|
| 553 |
+
$select_options[] = $group_option;
|
| 554 |
+
}
|
| 555 |
+
}
|
| 556 |
+
|
| 557 |
+
$field_details['options'] = $select_options;
|
| 558 |
+
}
|
| 559 |
+
|
| 560 |
foreach( $field_details['options'] as $option ){
|
| 561 |
if ( strpos( $option, $value ) !== false ){
|
| 562 |
if( strpos( $option, '%' ) === false ){
|
| 1291 |
static function wck_strip_script_tags(){
|
| 1292 |
|
| 1293 |
}
|
| 1294 |
+
|
| 1295 |
+
static function wck_generate_select_option($option, $values, $i, $current_value){
|
| 1296 |
+
if( strpos( $option, '%' ) === false ){
|
| 1297 |
+
$label = $option;
|
| 1298 |
+
if( !empty( $values ) )
|
| 1299 |
+
$value_attr = $values[$i];
|
| 1300 |
+
else
|
| 1301 |
+
$value_attr = $option;
|
| 1302 |
+
}
|
| 1303 |
+
else{
|
| 1304 |
+
$option_parts = explode( '%', $option );
|
| 1305 |
+
if( !empty( $option_parts ) ){
|
| 1306 |
+
if( empty( $option_parts[0] ) && count( $option_parts ) == 3 ){
|
| 1307 |
+
$label = $option_parts[1];
|
| 1308 |
+
if( !empty( $values ) )
|
| 1309 |
+
$value_attr = $values[$i];
|
| 1310 |
+
else
|
| 1311 |
+
$value_attr = $option_parts[2];
|
| 1312 |
+
}
|
| 1313 |
+
}
|
| 1314 |
+
}
|
| 1315 |
+
|
| 1316 |
+
$optionOutput = '<option value="'. esc_attr( $value_attr ) .'" '. selected( $value_attr, $current_value, false ) .' >'. esc_html( $label ) .'</option>';
|
| 1317 |
+
return $optionOutput;
|
| 1318 |
+
}
|
| 1319 |
+
|
| 1320 |
+
static function wck_is_multi($a) {
|
| 1321 |
+
foreach ($a as $v) {
|
| 1322 |
+
if (is_array($v)) return true;
|
| 1323 |
+
}
|
| 1324 |
+
return false;
|
| 1325 |
+
}
|
| 1326 |
}
|
| 1327 |
|
| 1328 |
|
| 1534 |
<?php
|
| 1535 |
}
|
| 1536 |
}
|
| 1537 |
+
|
| 1538 |
+
|
| 1539 |
+
|
| 1540 |
?>
|
features/functions.php
CHANGED
|
@@ -255,6 +255,9 @@ function wppb_print_cpt_script( $hook ){
|
|
| 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' ) ||
|
| 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 |
+
wp_enqueue_script( 'wppb-select2', WPPB_PLUGIN_URL . 'assets/js/select2/select2.min.js', array(), PROFILE_BUILDER_VERSION, true );
|
| 260 |
+
wp_enqueue_style( 'wppb-select2-style', WPPB_PLUGIN_URL . 'assets/css/select2/select2.min.css', false, PROFILE_BUILDER_VERSION );
|
| 261 |
}
|
| 262 |
|
| 263 |
if (( $hook == 'profile-builder_page_manage-fields' ) ||
|
front-end/default-fields/gdpr/gdpr.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 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
|
| 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 |
|
|
@@ -44,7 +44,7 @@ add_action( 'wppb_save_form_field', 'wppb_save_gdpr_value', 10, 4 );
|
|
| 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
|
| 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 |
}
|
| 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 != 'back_end' ){
|
| 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 |
|
| 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 != 'back_end' ){
|
| 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 |
}
|
index.php
CHANGED
|
@@ -3,8 +3,8 @@
|
|
| 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
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
| 10 |
Domain Path: /translation
|
|
@@ -75,9 +75,10 @@ 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'))));
|
| 82 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA', apply_filters('wppb_server_max_upload_size_mega_constant', ini_get('upload_max_filesize')));
|
| 83 |
define('WPPB_SERVER_MAX_POST_SIZE_BYTE', apply_filters('wppb_server_max_post_size_byte_constant', wppb_return_bytes(ini_get('post_max_size'))));
|
|
@@ -202,4 +203,14 @@ function wppb_free_plugin_init() {
|
|
| 202 |
add_action( 'plugins_loaded', 'wppb_free_plugin_init' );
|
| 203 |
|
| 204 |
if (file_exists( plugin_dir_path(__FILE__) . '/front-end/extra-fields/upload/upload_helper_functions.php'))
|
| 205 |
-
include_once( plugin_dir_path(__FILE__) . '/front-end/extra-fields/upload/upload_helper_functions.php');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.3
|
| 7 |
+
Author: Cozmoslabs
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
| 10 |
Domain Path: /translation
|
| 75 |
*
|
| 76 |
*
|
| 77 |
*/
|
| 78 |
+
define('PROFILE_BUILDER_VERSION', '2.8.3' );
|
| 79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
| 80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
| 81 |
+
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
| 82 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
|
| 83 |
define('WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA', apply_filters('wppb_server_max_upload_size_mega_constant', ini_get('upload_max_filesize')));
|
| 84 |
define('WPPB_SERVER_MAX_POST_SIZE_BYTE', apply_filters('wppb_server_max_post_size_byte_constant', wppb_return_bytes(ini_get('post_max_size'))));
|
| 203 |
add_action( 'plugins_loaded', 'wppb_free_plugin_init' );
|
| 204 |
|
| 205 |
if (file_exists( plugin_dir_path(__FILE__) . '/front-end/extra-fields/upload/upload_helper_functions.php'))
|
| 206 |
+
include_once( plugin_dir_path(__FILE__) . '/front-end/extra-fields/upload/upload_helper_functions.php');
|
| 207 |
+
|
| 208 |
+
/* add a redirect when plugin is activated */
|
| 209 |
+
if( !function_exists( 'wppb_activate_plugin_redirect' ) ){
|
| 210 |
+
function wppb_activate_plugin_redirect( $plugin ) {
|
| 211 |
+
if( $plugin == plugin_basename( __FILE__ ) ) {
|
| 212 |
+
exit( wp_redirect( admin_url( 'admin.php?page=profile-builder-basic-info' ) ) );
|
| 213 |
+
}
|
| 214 |
+
}
|
| 215 |
+
add_action( 'activated_plugin', 'wppb_activate_plugin_redirect' );
|
| 216 |
+
}
|
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
|
|
| 3 |
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.
|
| 7 |
-
Stable tag: 2.8.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -121,8 +121,9 @@ Please visit the [documentation page](https://www.cozmoslabs.com/docs/profile-bu
|
|
| 121 |
For more details visit our [website](http://www.cozmoslabs.com/wordpress-profile-builder/)
|
| 122 |
|
| 123 |
= Profile Builder in your Language =
|
| 124 |
-
We're focusing on translating Profile Builder in as many languages as we can. So far, the translations for 10 languages are almost complete, but we still need help on a lot of other languages, so please join us at [translate.
|
| 125 |
-
You will be able to download all the [available language packs](
|
|
|
|
| 126 |
|
| 127 |
NOTE:
|
| 128 |
This plugin adds/removes user fields in the front-end. Both default and extra profile fields will be visible in the back-end as well.
|
|
@@ -165,6 +166,11 @@ 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.2 =
|
| 169 |
* Added GDPR checkbox default field
|
| 170 |
* Fixed some warnings with Onfleek theme
|
| 3 |
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.6
|
| 7 |
+
Stable tag: 2.8.3
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 121 |
For more details visit our [website](http://www.cozmoslabs.com/wordpress-profile-builder/)
|
| 122 |
|
| 123 |
= Profile Builder in your Language =
|
| 124 |
+
We're focusing on translating Profile Builder in as many languages as we can. So far, the translations for 10 languages are almost complete, but we still need help on a lot of other languages, so please join us at [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/profile-builder)
|
| 125 |
+
You will be able to download all the [available language packs](https://translate.wordpress.org/projects/wp-plugins/profile-builder) as well as help us translate Profile Builder in your language.
|
| 126 |
+
For more information please visit [cozmoslabs.com](https://www.cozmoslabs.com/docs/profile-builder-2/translate-profile-builder/)
|
| 127 |
|
| 128 |
NOTE:
|
| 129 |
This plugin adds/removes user fields in the front-end. Both default and extra profile fields will be visible in the back-end as well.
|
| 166 |
12. Role Editor
|
| 167 |
|
| 168 |
== Changelog ==
|
| 169 |
+
= 2.8.3 =
|
| 170 |
+
* Usability improvements and some name changes
|
| 171 |
+
* Refactored manage fields dropdown to be more user friendly
|
| 172 |
+
* Added the GDPR field on the Edit Profile as well
|
| 173 |
+
|
| 174 |
= 2.8.2 =
|
| 175 |
* Added GDPR checkbox default field
|
| 176 |
* Fixed some warnings with Onfleek theme
|
translation/profile-builder.catalog.php
CHANGED
|
@@ -425,6 +425,8 @@
|
|
| 425 |
<?php __("Add Field", "profile-builder"); ?>
|
| 426 |
<?php __("Save Settings", "profile-builder"); ?>
|
| 427 |
<?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
|
|
|
|
|
|
|
| 428 |
<?php __("Extend WooCommerce checkout page with support for all the Profile Builder Pro custom field types, conditional logic and repeater fields with the latest <strong>WooSync addon</strong> for Profile Builder.", "profile-builder"); ?>
|
| 429 |
<?php __("Check it out!", "profile-builder"); ?>
|
| 430 |
<?php __("Dismiss this notice.", "profile-builder"); ?>
|
|
@@ -528,8 +530,8 @@
|
|
| 528 |
<?php __("Enter the minimum characters the password should have. Leave empty for no minimum limit", "profile-builder"); ?>
|
| 529 |
<?php __("Minimum Password Strength:", "profile-builder"); ?>
|
| 530 |
<?php __("Disabled", "profile-builder"); ?>
|
| 531 |
-
<?php __("
|
| 532 |
-
<?php __("Manage
|
| 533 |
<?php __("Choose one of the supported field types", "profile-builder"); ?>
|
| 534 |
<?php __(". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>.", "profile-builder"); ?>
|
| 535 |
<?php __("Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count", "profile-builder"); ?>
|
|
@@ -628,8 +630,8 @@
|
|
| 628 |
<?php __("Whether the field is required or not", "profile-builder"); ?>
|
| 629 |
<?php __("Overwrite Existing", "profile-builder"); ?>
|
| 630 |
<?php __("Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk", "profile-builder"); ?>
|
| 631 |
-
<?php __("Field Properties", "profile-builder"); ?>
|
| 632 |
-
<?php __("Registration & Edit Profile", "profile-builder"); ?>
|
| 633 |
<?php __("Usernames cannot be changed.", "profile-builder"); ?>
|
| 634 |
<?php __("Nickname", "profile-builder"); ?>
|
| 635 |
<?php __("Display name publicly as", "profile-builder"); ?>
|
|
@@ -1028,7 +1030,7 @@
|
|
| 1028 |
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>", "profile-builder"); ?>
|
| 1029 |
<?php __("Use these shortcodes on the pages you want the forms to be displayed:", "profile-builder"); ?>
|
| 1030 |
<?php __("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.", "profile-builder"); ?>
|
| 1031 |
-
<?php __("With Profile Builder Pro
|
| 1032 |
<?php __("Search Location", "profile-builder"); ?>
|
| 1033 |
<?php __("Paid Accounts", "profile-builder"); ?>
|
| 1034 |
<?php __("Paid Member Subscriptions - a free WordPress plugin", "profile-builder"); ?>
|
| 425 |
<?php __("Add Field", "profile-builder"); ?>
|
| 426 |
<?php __("Save Settings", "profile-builder"); ?>
|
| 427 |
<?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
|
| 428 |
+
<?php __("View Profile Builder documentation", "profile-builder"); ?>
|
| 429 |
+
<?php __("Docs", "profile-builder"); ?>
|
| 430 |
<?php __("Extend WooCommerce checkout page with support for all the Profile Builder Pro custom field types, conditional logic and repeater fields with the latest <strong>WooSync addon</strong> for Profile Builder.", "profile-builder"); ?>
|
| 431 |
<?php __("Check it out!", "profile-builder"); ?>
|
| 432 |
<?php __("Dismiss this notice.", "profile-builder"); ?>
|
| 530 |
<?php __("Enter the minimum characters the password should have. Leave empty for no minimum limit", "profile-builder"); ?>
|
| 531 |
<?php __("Minimum Password Strength:", "profile-builder"); ?>
|
| 532 |
<?php __("Disabled", "profile-builder"); ?>
|
| 533 |
+
<?php __("Form Fields", "profile-builder"); ?>
|
| 534 |
+
<?php __("Manage Form Fields", "profile-builder"); ?>
|
| 535 |
<?php __("Choose one of the supported field types", "profile-builder"); ?>
|
| 536 |
<?php __(". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>.", "profile-builder"); ?>
|
| 537 |
<?php __("Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count", "profile-builder"); ?>
|
| 630 |
<?php __("Whether the field is required or not", "profile-builder"); ?>
|
| 631 |
<?php __("Overwrite Existing", "profile-builder"); ?>
|
| 632 |
<?php __("Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk", "profile-builder"); ?>
|
| 633 |
+
<?php __("Form Field Properties", "profile-builder"); ?>
|
| 634 |
+
<?php __("Registration & Edit Profile Forms", "profile-builder"); ?>
|
| 635 |
<?php __("Usernames cannot be changed.", "profile-builder"); ?>
|
| 636 |
<?php __("Nickname", "profile-builder"); ?>
|
| 637 |
<?php __("Display name publicly as", "profile-builder"); ?>
|
| 1030 |
<?php __("<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>", "profile-builder"); ?>
|
| 1031 |
<?php __("Use these shortcodes on the pages you want the forms to be displayed:", "profile-builder"); ?>
|
| 1032 |
<?php __("If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules.", "profile-builder"); ?>
|
| 1033 |
+
<?php __("With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module.", "profile-builder"); ?>
|
| 1034 |
<?php __("Search Location", "profile-builder"); ?>
|
| 1035 |
<?php __("Paid Accounts", "profile-builder"); ?>
|
| 1036 |
<?php __("Paid Member Subscriptions - a free WordPress plugin", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
|
@@ -25,7 +25,7 @@ msgstr ""
|
|
| 25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
| 26 |
msgstr ""
|
| 27 |
|
| 28 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117,
|
| 29 |
msgid "None"
|
| 30 |
msgstr ""
|
| 31 |
|
|
@@ -37,7 +37,7 @@ msgstr ""
|
|
| 37 |
msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
|
| 38 |
msgstr ""
|
| 39 |
|
| 40 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98,
|
| 41 |
msgid "Default Edit Profile"
|
| 42 |
msgstr ""
|
| 43 |
|
|
@@ -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 |
|
|
@@ -653,435 +653,435 @@ msgstr ""
|
|
| 653 |
msgid "Replace labels with placeholders:"
|
| 654 |
msgstr ""
|
| 655 |
|
| 656 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, index.php:323, ../profile-builder-2.0/admin/general-settings.php:42, ../profile-builder-2.0/admin/general-settings.php:55, ../profile-builder-2.0/admin/general-settings.php:104, ../profile-builder-2.0/admin/general-settings.php:151, ../profile-builder-2.0/admin/general-settings.php:170, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
|
| 657 |
msgid "Yes"
|
| 658 |
msgstr ""
|
| 659 |
|
| 660 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:172, index.php:324, ../profile-builder-2.0/admin/general-settings.php:56, ../profile-builder-2.0/admin/general-settings.php:105, ../profile-builder-2.0/admin/general-settings.php:150, ../profile-builder-2.0/admin/general-settings.php:169, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
| 661 |
msgid "No"
|
| 662 |
msgstr ""
|
| 663 |
|
| 664 |
-
#: index.php:184, index.php:185, index.php:291, index.php:295
|
| 665 |
msgid "Social Connect"
|
| 666 |
msgstr ""
|
| 667 |
|
| 668 |
-
#: index.php:204
|
| 669 |
msgid "Display on the Following Forms"
|
| 670 |
msgstr ""
|
| 671 |
|
| 672 |
-
#: index.php:205
|
| 673 |
msgid "Disable Registration on"
|
| 674 |
msgstr ""
|
| 675 |
|
| 676 |
-
#: index.php:205
|
| 677 |
msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
|
| 678 |
msgstr ""
|
| 679 |
|
| 680 |
-
#: index.php:206
|
| 681 |
msgid "Facebook Login"
|
| 682 |
msgstr ""
|
| 683 |
|
| 684 |
-
#: index.php:207
|
| 685 |
msgid "Facebook App ID"
|
| 686 |
msgstr ""
|
| 687 |
|
| 688 |
-
#: index.php:208
|
| 689 |
msgid "Google+ Login"
|
| 690 |
msgstr ""
|
| 691 |
|
| 692 |
-
#: index.php:209
|
| 693 |
msgid "Google+ Client ID"
|
| 694 |
msgstr ""
|
| 695 |
|
| 696 |
-
#: index.php:210
|
| 697 |
msgid "Twitter Login"
|
| 698 |
msgstr ""
|
| 699 |
|
| 700 |
-
#: index.php:211
|
| 701 |
msgid "Twitter API Key"
|
| 702 |
msgstr ""
|
| 703 |
|
| 704 |
-
#: index.php:212
|
| 705 |
msgid "Twitter API Secret"
|
| 706 |
msgstr ""
|
| 707 |
|
| 708 |
-
#: index.php:213
|
| 709 |
msgid "LinkedIn Login"
|
| 710 |
msgstr ""
|
| 711 |
|
| 712 |
-
#: index.php:214
|
| 713 |
msgid "LinkedIn Client ID"
|
| 714 |
msgstr ""
|
| 715 |
|
| 716 |
-
#: index.php:215
|
| 717 |
msgid "Buttons Order"
|
| 718 |
msgstr ""
|
| 719 |
|
| 720 |
-
#: index.php:215
|
| 721 |
msgid "Drag and drop the dots to re-order."
|
| 722 |
msgstr ""
|
| 723 |
|
| 724 |
-
#: index.php:216
|
| 725 |
msgid "Buttons Re-Order"
|
| 726 |
msgstr ""
|
| 727 |
|
| 728 |
-
#: index.php:216
|
| 729 |
msgid "Save the buttons order from the buttons order checkboxes"
|
| 730 |
msgstr ""
|
| 731 |
|
| 732 |
-
#: index.php:217
|
| 733 |
msgid "Buttons Location"
|
| 734 |
msgstr ""
|
| 735 |
|
| 736 |
-
#: index.php:217
|
| 737 |
msgid "Display social buttons before or after the forms fields."
|
| 738 |
msgstr ""
|
| 739 |
|
| 740 |
-
#: index.php:218
|
| 741 |
msgid "Buttons Style"
|
| 742 |
msgstr ""
|
| 743 |
|
| 744 |
-
#: index.php:219
|
| 745 |
msgid "Heading Before Buttons (Login/Register)"
|
| 746 |
msgstr ""
|
| 747 |
|
| 748 |
-
#: index.php:219, index.php:220
|
| 749 |
msgid "Empty field will remove the heading."
|
| 750 |
msgstr ""
|
| 751 |
|
| 752 |
-
#: index.php:220
|
| 753 |
msgid "Heading Before Buttons (Edit Profile)"
|
| 754 |
msgstr ""
|
| 755 |
|
| 756 |
-
#: index.php:221
|
| 757 |
msgid "Facebook Button Text (Login/Register)"
|
| 758 |
msgstr ""
|
| 759 |
|
| 760 |
-
#: index.php:222
|
| 761 |
msgid "Google+ Button Text (Login/Register)"
|
| 762 |
msgstr ""
|
| 763 |
|
| 764 |
-
#: index.php:223
|
| 765 |
msgid "Twitter Button Text (Login/Register)"
|
| 766 |
msgstr ""
|
| 767 |
|
| 768 |
-
#: index.php:224
|
| 769 |
msgid "LinkedIn Button Text (Login/Register)"
|
| 770 |
msgstr ""
|
| 771 |
|
| 772 |
-
#: index.php:225
|
| 773 |
msgid "Facebook Button Text (Edit Profile)"
|
| 774 |
msgstr ""
|
| 775 |
|
| 776 |
-
#: index.php:226
|
| 777 |
msgid "Google+ Button Text (Edit Profile)"
|
| 778 |
msgstr ""
|
| 779 |
|
| 780 |
-
#: index.php:227
|
| 781 |
msgid "Twitter Button Text (Edit Profile)"
|
| 782 |
msgstr ""
|
| 783 |
|
| 784 |
-
#: index.php:228
|
| 785 |
msgid "LinkedIn Button Text (Edit Profile)"
|
| 786 |
msgstr ""
|
| 787 |
|
| 788 |
-
#: index.php:229
|
| 789 |
msgid "Unlink Accounts (Edit Profile)"
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
-
#: index.php:229
|
| 793 |
msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
|
| 794 |
msgstr ""
|
| 795 |
|
| 796 |
-
#: index.php:230
|
| 797 |
msgid "Default Social Connect CSS in the Front-end"
|
| 798 |
msgstr ""
|
| 799 |
|
| 800 |
-
#: index.php:236
|
| 801 |
msgid "Settings"
|
| 802 |
msgstr ""
|
| 803 |
|
| 804 |
-
#: index.php:250
|
| 805 |
msgid "Help"
|
| 806 |
msgstr ""
|
| 807 |
|
| 808 |
-
#: index.php:320
|
| 809 |
msgid "Display Social Connect buttons:"
|
| 810 |
msgstr ""
|
| 811 |
|
| 812 |
-
#: index.php:369
|
| 813 |
msgid "You have successfully unlinked %% from your account."
|
| 814 |
msgstr ""
|
| 815 |
|
| 816 |
-
#: index.php:380
|
| 817 |
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
| 818 |
msgstr ""
|
| 819 |
|
| 820 |
-
#: index.php:381
|
| 821 |
msgid "Please enter your website account password"
|
| 822 |
msgstr ""
|
| 823 |
|
| 824 |
-
#: index.php:382
|
| 825 |
msgid "Please enter a new email"
|
| 826 |
msgstr ""
|
| 827 |
|
| 828 |
-
#: index.php:383
|
| 829 |
msgid "You have successfully linked your account to %%."
|
| 830 |
msgstr ""
|
| 831 |
|
| 832 |
-
#: index.php:384, twitter/twitter.php:108
|
| 833 |
msgid "Something went wrong. Please try again later!"
|
| 834 |
msgstr ""
|
| 835 |
|
| 836 |
-
#: index.php:385
|
| 837 |
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
| 838 |
msgstr ""
|
| 839 |
|
| 840 |
-
#: index.php:386
|
| 841 |
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
| 842 |
msgstr ""
|
| 843 |
|
| 844 |
-
#: index.php:387
|
| 845 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
| 846 |
msgstr ""
|
| 847 |
|
| 848 |
-
#: index.php:388, ../profile-builder-2.0/features/admin-approval/admin-approval.php:180
|
| 849 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
| 850 |
msgstr ""
|
| 851 |
|
| 852 |
-
#: index.php:389
|
| 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 |
|
| 860 |
-
#: index.php:391
|
| 861 |
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
| 862 |
msgstr ""
|
| 863 |
|
| 864 |
-
#: index.php:392
|
| 865 |
msgid "Wrong password!"
|
| 866 |
msgstr ""
|
| 867 |
|
| 868 |
-
#: index.php:393
|
| 869 |
msgid "Please enter a valid email!"
|
| 870 |
msgstr ""
|
| 871 |
|
| 872 |
-
#: index.php:394
|
| 873 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
| 874 |
msgstr ""
|
| 875 |
|
| 876 |
-
#: index.php:400, index.php:401
|
| 877 |
msgid "Please enter your Facebook email!"
|
| 878 |
msgstr ""
|
| 879 |
|
| 880 |
-
#: index.php:413
|
| 881 |
msgid "Waiting for Twitter..."
|
| 882 |
msgstr ""
|
| 883 |
|
| 884 |
-
#: index.php:414, index.php:415
|
| 885 |
msgid "Please enter your Twitter email!"
|
| 886 |
msgstr ""
|
| 887 |
|
| 888 |
-
#: index.php:695
|
| 889 |
msgid "Profile Builder not active!"
|
| 890 |
msgstr ""
|
| 891 |
|
| 892 |
-
#: index.php:832, ../profile-builder-2.0/admin/admin-functions.php:37, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:35
|
| 893 |
msgid "General Settings"
|
| 894 |
msgstr ""
|
| 895 |
|
| 896 |
-
#: index.php:836
|
| 897 |
msgid "Application Settings"
|
| 898 |
msgstr ""
|
| 899 |
|
| 900 |
-
#: index.php:840
|
| 901 |
msgid "Appearance Settings"
|
| 902 |
msgstr ""
|
| 903 |
|
| 904 |
-
#: index.php:904
|
| 905 |
msgid "Unlink"
|
| 906 |
msgstr ""
|
| 907 |
|
| 908 |
-
#: index.php:911
|
| 909 |
msgid "Your account is linked with:"
|
| 910 |
msgstr ""
|
| 911 |
|
| 912 |
-
#:
|
| 913 |
msgid "Country"
|
| 914 |
msgstr ""
|
| 915 |
|
| 916 |
-
#:
|
| 917 |
msgid "First Name"
|
| 918 |
msgstr ""
|
| 919 |
|
| 920 |
-
#:
|
| 921 |
msgid "Last Name"
|
| 922 |
msgstr ""
|
| 923 |
|
| 924 |
-
#:
|
| 925 |
msgid "Company Name"
|
| 926 |
msgstr ""
|
| 927 |
|
| 928 |
-
#:
|
| 929 |
msgid "Address"
|
| 930 |
msgstr ""
|
| 931 |
|
| 932 |
-
#:
|
| 933 |
msgid "Town / City"
|
| 934 |
msgstr ""
|
| 935 |
|
| 936 |
-
#:
|
| 937 |
msgid "State / County"
|
| 938 |
msgstr ""
|
| 939 |
|
| 940 |
-
#:
|
| 941 |
msgid "Postcode / Zip"
|
| 942 |
msgstr ""
|
| 943 |
|
| 944 |
-
#:
|
| 945 |
msgid "Email Address"
|
| 946 |
msgstr ""
|
| 947 |
|
| 948 |
-
#:
|
| 949 |
msgid "Phone"
|
| 950 |
msgstr ""
|
| 951 |
|
| 952 |
-
#:
|
| 953 |
msgid "Ship to a different address?"
|
| 954 |
msgstr ""
|
| 955 |
|
| 956 |
-
#:
|
| 957 |
msgid "Billing Address"
|
| 958 |
msgstr ""
|
| 959 |
|
| 960 |
-
#:
|
| 961 |
msgid "Displays customer billing fields in front-end. "
|
| 962 |
msgstr ""
|
| 963 |
|
| 964 |
-
#:
|
| 965 |
msgid "Shipping Address"
|
| 966 |
msgstr ""
|
| 967 |
|
| 968 |
-
#:
|
| 969 |
msgid "Displays customer shipping fields in front-end. "
|
| 970 |
msgstr ""
|
| 971 |
|
| 972 |
-
#:
|
| 973 |
msgid "Address line 2"
|
| 974 |
msgstr ""
|
| 975 |
|
| 976 |
-
#:
|
| 977 |
msgid "Billing Fields"
|
| 978 |
msgstr ""
|
| 979 |
|
| 980 |
-
#:
|
| 981 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
| 982 |
msgstr ""
|
| 983 |
|
| 984 |
-
#:
|
| 985 |
msgid "Billing Fields Order"
|
| 986 |
msgstr ""
|
| 987 |
|
| 988 |
-
#:
|
| 989 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
| 990 |
msgstr ""
|
| 991 |
|
| 992 |
-
#:
|
| 993 |
msgid "Billing Fields Name"
|
| 994 |
msgstr ""
|
| 995 |
|
| 996 |
-
#:
|
| 997 |
msgid "Save the billing fields names"
|
| 998 |
msgstr ""
|
| 999 |
|
| 1000 |
-
#:
|
| 1001 |
msgid "Shipping Fields"
|
| 1002 |
msgstr ""
|
| 1003 |
|
| 1004 |
-
#:
|
| 1005 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
| 1006 |
msgstr ""
|
| 1007 |
|
| 1008 |
-
#:
|
| 1009 |
msgid "Shipping Fields Order"
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
-
#:
|
| 1013 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
-
#:
|
| 1017 |
msgid "Shipping Fields Name"
|
| 1018 |
msgstr ""
|
| 1019 |
|
| 1020 |
-
#:
|
| 1021 |
msgid "Save the shipping fields names"
|
| 1022 |
msgstr ""
|
| 1023 |
|
| 1024 |
-
#:
|
| 1025 |
msgid "Field Name"
|
| 1026 |
msgstr ""
|
| 1027 |
|
| 1028 |
-
#:
|
| 1029 |
msgid "Required"
|
| 1030 |
msgstr ""
|
| 1031 |
|
| 1032 |
-
#:
|
| 1033 |
msgid "Click to edit "
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
-
#:
|
| 1037 |
msgid "The email you entered is not a valid email address."
|
| 1038 |
msgstr ""
|
| 1039 |
|
| 1040 |
-
#:
|
| 1041 |
msgid "No options available. Please select one country."
|
| 1042 |
msgstr ""
|
| 1043 |
|
| 1044 |
-
#:
|
| 1045 |
msgid "Billing "
|
| 1046 |
msgstr ""
|
| 1047 |
|
| 1048 |
-
#:
|
| 1049 |
msgid "Shipping "
|
| 1050 |
msgstr ""
|
| 1051 |
|
| 1052 |
-
#:
|
| 1053 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
| 1054 |
msgstr ""
|
| 1055 |
|
| 1056 |
-
#:
|
| 1057 |
msgid "Display on WooCommerce Checkout"
|
| 1058 |
msgstr ""
|
| 1059 |
|
| 1060 |
-
#:
|
| 1061 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
| 1062 |
msgstr ""
|
| 1063 |
|
| 1064 |
-
#:
|
| 1065 |
msgid "WooCommerce Sync"
|
| 1066 |
msgstr ""
|
| 1067 |
|
| 1068 |
-
#:
|
| 1069 |
msgid "Choose Register form to display on My Account page:"
|
| 1070 |
msgstr ""
|
| 1071 |
|
| 1072 |
-
#:
|
| 1073 |
msgid "Default Register"
|
| 1074 |
msgstr ""
|
| 1075 |
|
| 1076 |
-
#:
|
| 1077 |
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
| 1078 |
msgstr ""
|
| 1079 |
|
| 1080 |
-
#:
|
| 1081 |
msgid "Choose Edit Profile form to display on My Account page:"
|
| 1082 |
msgstr ""
|
| 1083 |
|
| 1084 |
-
#:
|
| 1085 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
| 1086 |
msgstr ""
|
| 1087 |
|
|
@@ -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 |
|
|
@@ -1487,43 +1487,43 @@ msgstr ""
|
|
| 1487 |
msgid "required"
|
| 1488 |
msgstr ""
|
| 1489 |
|
| 1490 |
-
#: facebook/facebook.php:32
|
| 1491 |
msgid "Link with Facebook"
|
| 1492 |
msgstr ""
|
| 1493 |
|
| 1494 |
-
#: facebook/facebook.php:38
|
| 1495 |
msgid "Sign in with Facebook"
|
| 1496 |
msgstr ""
|
| 1497 |
|
| 1498 |
-
#: google/google.php:39
|
| 1499 |
msgid "Link with Google+"
|
| 1500 |
msgstr ""
|
| 1501 |
|
| 1502 |
-
#: google/google.php:45
|
| 1503 |
msgid "Sign in with Google+"
|
| 1504 |
msgstr ""
|
| 1505 |
|
| 1506 |
-
#: linkedin/linkedin.php:40
|
| 1507 |
msgid "Link with LinkedIn"
|
| 1508 |
msgstr ""
|
| 1509 |
|
| 1510 |
-
#: linkedin/linkedin.php:46
|
| 1511 |
msgid "Sign in with LinkedIn"
|
| 1512 |
msgstr ""
|
| 1513 |
|
| 1514 |
-
#: twitter/twitter.php:52
|
| 1515 |
msgid "Connection with twitter Failed"
|
| 1516 |
msgstr ""
|
| 1517 |
|
| 1518 |
-
#: twitter/twitter.php:57
|
| 1519 |
msgid "Error Receiving Request Token"
|
| 1520 |
msgstr ""
|
| 1521 |
|
| 1522 |
-
#: twitter/twitter.php:141
|
| 1523 |
msgid "Link with Twitter"
|
| 1524 |
msgstr ""
|
| 1525 |
|
| 1526 |
-
#: twitter/twitter.php:147
|
| 1527 |
msgid "Sign in with Twitter"
|
| 1528 |
msgstr ""
|
| 1529 |
|
|
@@ -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 |
|
|
@@ -1727,15 +1727,23 @@ msgstr ""
|
|
| 1727 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
| 1728 |
msgstr ""
|
| 1729 |
|
| 1730 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1731 |
msgid "Extend WooCommerce checkout page with support for all the Profile Builder Pro custom field types, conditional logic and repeater fields with the latest <strong>WooSync addon</strong> for Profile Builder."
|
| 1732 |
msgstr ""
|
| 1733 |
|
| 1734 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:
|
| 1735 |
msgid "Check it out!"
|
| 1736 |
msgstr ""
|
| 1737 |
|
| 1738 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:
|
| 1739 |
msgid "Dismiss this notice."
|
| 1740 |
msgstr ""
|
| 1741 |
|
|
@@ -2103,7 +2111,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 |
|
|
@@ -2140,2044 +2148,2044 @@ msgid "Disabled"
|
|
| 2140 |
msgstr ""
|
| 2141 |
|
| 2142 |
#: ../profile-builder-2.0/admin/manage-fields.php:12
|
| 2143 |
-
msgid "
|
| 2144 |
msgstr ""
|
| 2145 |
|
| 2146 |
#: ../profile-builder-2.0/admin/manage-fields.php:13
|
| 2147 |
-
msgid "Manage
|
| 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
|
| 4178 |
msgstr ""
|
| 4179 |
|
| 4180 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4181 |
msgid "Search Location"
|
| 4182 |
msgstr ""
|
| 4183 |
|
|
@@ -4325,59 +4333,59 @@ msgstr ""
|
|
| 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:
|
| 4329 |
msgid "Strength indicator"
|
| 4330 |
msgstr ""
|
| 4331 |
|
| 4332 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4333 |
msgid "Very Weak"
|
| 4334 |
msgstr ""
|
| 4335 |
|
| 4336 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4337 |
msgid "Minimum length of %d characters."
|
| 4338 |
msgstr ""
|
| 4339 |
|
| 4340 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4341 |
msgid "The password must have a minimum strength of %s."
|
| 4342 |
msgstr ""
|
| 4343 |
|
| 4344 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4345 |
msgid "This field is required"
|
| 4346 |
msgstr ""
|
| 4347 |
|
| 4348 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4349 |
msgid "Please enter a (valid) reCAPTCHA value"
|
| 4350 |
msgstr ""
|
| 4351 |
|
| 4352 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4353 |
msgid "Incorrect phone number"
|
| 4354 |
msgstr ""
|
| 4355 |
|
| 4356 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4357 |
msgid "Save Changes"
|
| 4358 |
msgstr ""
|
| 4359 |
|
| 4360 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 4361 |
msgid "Content"
|
| 4362 |
msgstr ""
|
| 4363 |
|
| 4364 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 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:
|
| 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:
|
| 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:
|
| 4377 |
msgid "<br><br>You can visit your site at "
|
| 4378 |
msgstr ""
|
| 4379 |
|
| 4380 |
-
#: ../profile-builder-2.0/features/functions.php:
|
| 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 |
|
| 25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
| 26 |
msgstr ""
|
| 27 |
|
| 28 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, woosync-page.php:80, woosync-page.php:115, ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:552, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:233, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:308, ../profile-builder-2.0/features/content-restriction/content-restriction.php:91
|
| 29 |
msgid "None"
|
| 30 |
msgstr ""
|
| 31 |
|
| 37 |
msgid "Choose Edit Profile form to display under bbPress Profile Edit tab:"
|
| 38 |
msgstr ""
|
| 39 |
|
| 40 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:118, ../pb-add-on-buddypress/buddypress-page.php:98, woosync-page.php:116
|
| 41 |
msgid "Default Edit Profile"
|
| 42 |
msgstr ""
|
| 43 |
|
| 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:243
|
| 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:249
|
| 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:260
|
| 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:1238, ../profile-builder-2.0/features/functions.php:751, ../profile-builder-2.0/features/functions.php:758, ../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:1238, ../profile-builder-2.0/features/functions.php:744, ../profile-builder-2.0/features/functions.php:758, ../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:172
|
| 539 |
msgid "Labels"
|
| 540 |
msgstr ""
|
| 541 |
|
| 653 |
msgid "Replace labels with placeholders:"
|
| 654 |
msgstr ""
|
| 655 |
|
| 656 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:323, ../profile-builder-2.0/admin/general-settings.php:42, ../profile-builder-2.0/admin/general-settings.php:55, ../profile-builder-2.0/admin/general-settings.php:104, ../profile-builder-2.0/admin/general-settings.php:151, ../profile-builder-2.0/admin/general-settings.php:170, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230, ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
|
| 657 |
msgid "Yes"
|
| 658 |
msgstr ""
|
| 659 |
|
| 660 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:324, ../profile-builder-2.0/admin/general-settings.php:56, ../profile-builder-2.0/admin/general-settings.php:105, ../profile-builder-2.0/admin/general-settings.php:150, ../profile-builder-2.0/admin/general-settings.php:169, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:229, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:230
|
| 661 |
msgid "No"
|
| 662 |
msgstr ""
|
| 663 |
|
| 664 |
+
#: ../pb-add-on-social-connect/index.php:184, ../pb-add-on-social-connect/index.php:185, ../pb-add-on-social-connect/index.php:291, ../pb-add-on-social-connect/index.php:295
|
| 665 |
msgid "Social Connect"
|
| 666 |
msgstr ""
|
| 667 |
|
| 668 |
+
#: ../pb-add-on-social-connect/index.php:204
|
| 669 |
msgid "Display on the Following Forms"
|
| 670 |
msgstr ""
|
| 671 |
|
| 672 |
+
#: ../pb-add-on-social-connect/index.php:205
|
| 673 |
msgid "Disable Registration on"
|
| 674 |
msgstr ""
|
| 675 |
|
| 676 |
+
#: ../pb-add-on-social-connect/index.php:205
|
| 677 |
msgid "Allow only login with Social Connect on Profile Builder Login Form.<br>Social Connect will still automatically register users on other forms."
|
| 678 |
msgstr ""
|
| 679 |
|
| 680 |
+
#: ../pb-add-on-social-connect/index.php:206
|
| 681 |
msgid "Facebook Login"
|
| 682 |
msgstr ""
|
| 683 |
|
| 684 |
+
#: ../pb-add-on-social-connect/index.php:207
|
| 685 |
msgid "Facebook App ID"
|
| 686 |
msgstr ""
|
| 687 |
|
| 688 |
+
#: ../pb-add-on-social-connect/index.php:208
|
| 689 |
msgid "Google+ Login"
|
| 690 |
msgstr ""
|
| 691 |
|
| 692 |
+
#: ../pb-add-on-social-connect/index.php:209
|
| 693 |
msgid "Google+ Client ID"
|
| 694 |
msgstr ""
|
| 695 |
|
| 696 |
+
#: ../pb-add-on-social-connect/index.php:210
|
| 697 |
msgid "Twitter Login"
|
| 698 |
msgstr ""
|
| 699 |
|
| 700 |
+
#: ../pb-add-on-social-connect/index.php:211
|
| 701 |
msgid "Twitter API Key"
|
| 702 |
msgstr ""
|
| 703 |
|
| 704 |
+
#: ../pb-add-on-social-connect/index.php:212
|
| 705 |
msgid "Twitter API Secret"
|
| 706 |
msgstr ""
|
| 707 |
|
| 708 |
+
#: ../pb-add-on-social-connect/index.php:213
|
| 709 |
msgid "LinkedIn Login"
|
| 710 |
msgstr ""
|
| 711 |
|
| 712 |
+
#: ../pb-add-on-social-connect/index.php:214
|
| 713 |
msgid "LinkedIn Client ID"
|
| 714 |
msgstr ""
|
| 715 |
|
| 716 |
+
#: ../pb-add-on-social-connect/index.php:215
|
| 717 |
msgid "Buttons Order"
|
| 718 |
msgstr ""
|
| 719 |
|
| 720 |
+
#: ../pb-add-on-social-connect/index.php:215
|
| 721 |
msgid "Drag and drop the dots to re-order."
|
| 722 |
msgstr ""
|
| 723 |
|
| 724 |
+
#: ../pb-add-on-social-connect/index.php:216
|
| 725 |
msgid "Buttons Re-Order"
|
| 726 |
msgstr ""
|
| 727 |
|
| 728 |
+
#: ../pb-add-on-social-connect/index.php:216
|
| 729 |
msgid "Save the buttons order from the buttons order checkboxes"
|
| 730 |
msgstr ""
|
| 731 |
|
| 732 |
+
#: ../pb-add-on-social-connect/index.php:217
|
| 733 |
msgid "Buttons Location"
|
| 734 |
msgstr ""
|
| 735 |
|
| 736 |
+
#: ../pb-add-on-social-connect/index.php:217
|
| 737 |
msgid "Display social buttons before or after the forms fields."
|
| 738 |
msgstr ""
|
| 739 |
|
| 740 |
+
#: ../pb-add-on-social-connect/index.php:218
|
| 741 |
msgid "Buttons Style"
|
| 742 |
msgstr ""
|
| 743 |
|
| 744 |
+
#: ../pb-add-on-social-connect/index.php:219
|
| 745 |
msgid "Heading Before Buttons (Login/Register)"
|
| 746 |
msgstr ""
|
| 747 |
|
| 748 |
+
#: ../pb-add-on-social-connect/index.php:219, ../pb-add-on-social-connect/index.php:220
|
| 749 |
msgid "Empty field will remove the heading."
|
| 750 |
msgstr ""
|
| 751 |
|
| 752 |
+
#: ../pb-add-on-social-connect/index.php:220
|
| 753 |
msgid "Heading Before Buttons (Edit Profile)"
|
| 754 |
msgstr ""
|
| 755 |
|
| 756 |
+
#: ../pb-add-on-social-connect/index.php:221
|
| 757 |
msgid "Facebook Button Text (Login/Register)"
|
| 758 |
msgstr ""
|
| 759 |
|
| 760 |
+
#: ../pb-add-on-social-connect/index.php:222
|
| 761 |
msgid "Google+ Button Text (Login/Register)"
|
| 762 |
msgstr ""
|
| 763 |
|
| 764 |
+
#: ../pb-add-on-social-connect/index.php:223
|
| 765 |
msgid "Twitter Button Text (Login/Register)"
|
| 766 |
msgstr ""
|
| 767 |
|
| 768 |
+
#: ../pb-add-on-social-connect/index.php:224
|
| 769 |
msgid "LinkedIn Button Text (Login/Register)"
|
| 770 |
msgstr ""
|
| 771 |
|
| 772 |
+
#: ../pb-add-on-social-connect/index.php:225
|
| 773 |
msgid "Facebook Button Text (Edit Profile)"
|
| 774 |
msgstr ""
|
| 775 |
|
| 776 |
+
#: ../pb-add-on-social-connect/index.php:226
|
| 777 |
msgid "Google+ Button Text (Edit Profile)"
|
| 778 |
msgstr ""
|
| 779 |
|
| 780 |
+
#: ../pb-add-on-social-connect/index.php:227
|
| 781 |
msgid "Twitter Button Text (Edit Profile)"
|
| 782 |
msgstr ""
|
| 783 |
|
| 784 |
+
#: ../pb-add-on-social-connect/index.php:228
|
| 785 |
msgid "LinkedIn Button Text (Edit Profile)"
|
| 786 |
msgstr ""
|
| 787 |
|
| 788 |
+
#: ../pb-add-on-social-connect/index.php:229
|
| 789 |
msgid "Unlink Accounts (Edit Profile)"
|
| 790 |
msgstr ""
|
| 791 |
|
| 792 |
+
#: ../pb-add-on-social-connect/index.php:229
|
| 793 |
msgid "This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page."
|
| 794 |
msgstr ""
|
| 795 |
|
| 796 |
+
#: ../pb-add-on-social-connect/index.php:230
|
| 797 |
msgid "Default Social Connect CSS in the Front-end"
|
| 798 |
msgstr ""
|
| 799 |
|
| 800 |
+
#: ../pb-add-on-social-connect/index.php:236, ../profile-builder-2.0/admin/admin-functions.php:226
|
| 801 |
msgid "Settings"
|
| 802 |
msgstr ""
|
| 803 |
|
| 804 |
+
#: ../pb-add-on-social-connect/index.php:250
|
| 805 |
msgid "Help"
|
| 806 |
msgstr ""
|
| 807 |
|
| 808 |
+
#: ../pb-add-on-social-connect/index.php:320
|
| 809 |
msgid "Display Social Connect buttons:"
|
| 810 |
msgstr ""
|
| 811 |
|
| 812 |
+
#: ../pb-add-on-social-connect/index.php:369
|
| 813 |
msgid "You have successfully unlinked %% from your account."
|
| 814 |
msgstr ""
|
| 815 |
|
| 816 |
+
#: ../pb-add-on-social-connect/index.php:380
|
| 817 |
msgid "An account with this email address already exists.<br> Do you want to connect it?"
|
| 818 |
msgstr ""
|
| 819 |
|
| 820 |
+
#: ../pb-add-on-social-connect/index.php:381
|
| 821 |
msgid "Please enter your website account password"
|
| 822 |
msgstr ""
|
| 823 |
|
| 824 |
+
#: ../pb-add-on-social-connect/index.php:382
|
| 825 |
msgid "Please enter a new email"
|
| 826 |
msgstr ""
|
| 827 |
|
| 828 |
+
#: ../pb-add-on-social-connect/index.php:383
|
| 829 |
msgid "You have successfully linked your account to %%."
|
| 830 |
msgstr ""
|
| 831 |
|
| 832 |
+
#: ../pb-add-on-social-connect/index.php:384, ../pb-add-on-social-connect/twitter/twitter.php:108
|
| 833 |
msgid "Something went wrong. Please try again later!"
|
| 834 |
msgstr ""
|
| 835 |
|
| 836 |
+
#: ../pb-add-on-social-connect/index.php:385
|
| 837 |
msgid "Before you can access your account you need to confirm your email address. Please check your inbox and click the activation link."
|
| 838 |
msgstr ""
|
| 839 |
|
| 840 |
+
#: ../pb-add-on-social-connect/index.php:386
|
| 841 |
msgid "<strong>ERROR</strong>: You need to confirm your email address before you can log in."
|
| 842 |
msgstr ""
|
| 843 |
|
| 844 |
+
#: ../pb-add-on-social-connect/index.php:387
|
| 845 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
| 846 |
msgstr ""
|
| 847 |
|
| 848 |
+
#: ../pb-add-on-social-connect/index.php:388, ../profile-builder-2.0/features/admin-approval/admin-approval.php:180
|
| 849 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
| 850 |
msgstr ""
|
| 851 |
|
| 852 |
+
#: ../pb-add-on-social-connect/index.php:389
|
| 853 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
| 854 |
msgstr ""
|
| 855 |
|
| 856 |
+
#: ../pb-add-on-social-connect/index.php:390, ../profile-builder-2.0/features/functions.php:1036
|
| 857 |
msgid "here"
|
| 858 |
msgstr ""
|
| 859 |
|
| 860 |
+
#: ../pb-add-on-social-connect/index.php:391
|
| 861 |
msgid "<strong>You can only login with social accounts, not register!</strong><br>Please link your social account to an existing user account first."
|
| 862 |
msgstr ""
|
| 863 |
|
| 864 |
+
#: ../pb-add-on-social-connect/index.php:392
|
| 865 |
msgid "Wrong password!"
|
| 866 |
msgstr ""
|
| 867 |
|
| 868 |
+
#: ../pb-add-on-social-connect/index.php:393
|
| 869 |
msgid "Please enter a valid email!"
|
| 870 |
msgstr ""
|
| 871 |
|
| 872 |
+
#: ../pb-add-on-social-connect/index.php:394
|
| 873 |
msgid "You can only login on this form.<br>Register with your social account on the register form."
|
| 874 |
msgstr ""
|
| 875 |
|
| 876 |
+
#: ../pb-add-on-social-connect/index.php:400, ../pb-add-on-social-connect/index.php:401
|
| 877 |
msgid "Please enter your Facebook email!"
|
| 878 |
msgstr ""
|
| 879 |
|
| 880 |
+
#: ../pb-add-on-social-connect/index.php:413
|
| 881 |
msgid "Waiting for Twitter..."
|
| 882 |
msgstr ""
|
| 883 |
|
| 884 |
+
#: ../pb-add-on-social-connect/index.php:414, ../pb-add-on-social-connect/index.php:415
|
| 885 |
msgid "Please enter your Twitter email!"
|
| 886 |
msgstr ""
|
| 887 |
|
| 888 |
+
#: ../pb-add-on-social-connect/index.php:695
|
| 889 |
msgid "Profile Builder not active!"
|
| 890 |
msgstr ""
|
| 891 |
|
| 892 |
+
#: ../pb-add-on-social-connect/index.php:832, ../profile-builder-2.0/admin/admin-functions.php:37, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:10, ../profile-builder-2.0/admin/general-settings.php:35
|
| 893 |
msgid "General Settings"
|
| 894 |
msgstr ""
|
| 895 |
|
| 896 |
+
#: ../pb-add-on-social-connect/index.php:836
|
| 897 |
msgid "Application Settings"
|
| 898 |
msgstr ""
|
| 899 |
|
| 900 |
+
#: ../pb-add-on-social-connect/index.php:840
|
| 901 |
msgid "Appearance Settings"
|
| 902 |
msgstr ""
|
| 903 |
|
| 904 |
+
#: ../pb-add-on-social-connect/index.php:904
|
| 905 |
msgid "Unlink"
|
| 906 |
msgstr ""
|
| 907 |
|
| 908 |
+
#: ../pb-add-on-social-connect/index.php:911
|
| 909 |
msgid "Your account is linked with:"
|
| 910 |
msgstr ""
|
| 911 |
|
| 912 |
+
#: billing-fields.php:5, shipping-fields.php:5
|
| 913 |
msgid "Country"
|
| 914 |
msgstr ""
|
| 915 |
|
| 916 |
+
#: billing-fields.php:6, shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:245
|
| 917 |
msgid "First Name"
|
| 918 |
msgstr ""
|
| 919 |
|
| 920 |
+
#: billing-fields.php:7, shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:246
|
| 921 |
msgid "Last Name"
|
| 922 |
msgstr ""
|
| 923 |
|
| 924 |
+
#: billing-fields.php:8, shipping-fields.php:8
|
| 925 |
msgid "Company Name"
|
| 926 |
msgstr ""
|
| 927 |
|
| 928 |
+
#: billing-fields.php:9, shipping-fields.php:9
|
| 929 |
msgid "Address"
|
| 930 |
msgstr ""
|
| 931 |
|
| 932 |
+
#: billing-fields.php:11, shipping-fields.php:11
|
| 933 |
msgid "Town / City"
|
| 934 |
msgstr ""
|
| 935 |
|
| 936 |
+
#: billing-fields.php:12, shipping-fields.php:12
|
| 937 |
msgid "State / County"
|
| 938 |
msgstr ""
|
| 939 |
|
| 940 |
+
#: billing-fields.php:13, shipping-fields.php:13
|
| 941 |
msgid "Postcode / Zip"
|
| 942 |
msgstr ""
|
| 943 |
|
| 944 |
+
#: billing-fields.php:14
|
| 945 |
msgid "Email Address"
|
| 946 |
msgstr ""
|
| 947 |
|
| 948 |
+
#: billing-fields.php:15
|
| 949 |
msgid "Phone"
|
| 950 |
msgstr ""
|
| 951 |
|
| 952 |
+
#: billing-fields.php:278
|
| 953 |
msgid "Ship to a different address?"
|
| 954 |
msgstr ""
|
| 955 |
|
| 956 |
+
#: index.php:160, index.php:729
|
| 957 |
msgid "Billing Address"
|
| 958 |
msgstr ""
|
| 959 |
|
| 960 |
+
#: index.php:160
|
| 961 |
msgid "Displays customer billing fields in front-end. "
|
| 962 |
msgstr ""
|
| 963 |
|
| 964 |
+
#: index.php:164, index.php:730
|
| 965 |
msgid "Shipping Address"
|
| 966 |
msgstr ""
|
| 967 |
|
| 968 |
+
#: index.php:164
|
| 969 |
msgid "Displays customer shipping fields in front-end. "
|
| 970 |
msgstr ""
|
| 971 |
|
| 972 |
+
#: index.php:239, index.php:258, index.php:355, index.php:358, index.php:785
|
| 973 |
msgid "Address line 2"
|
| 974 |
msgstr ""
|
| 975 |
|
| 976 |
+
#: index.php:247
|
| 977 |
msgid "Billing Fields"
|
| 978 |
msgstr ""
|
| 979 |
|
| 980 |
+
#: index.php:247
|
| 981 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
| 982 |
msgstr ""
|
| 983 |
|
| 984 |
+
#: index.php:248
|
| 985 |
msgid "Billing Fields Order"
|
| 986 |
msgstr ""
|
| 987 |
|
| 988 |
+
#: index.php:248
|
| 989 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
| 990 |
msgstr ""
|
| 991 |
|
| 992 |
+
#: index.php:249
|
| 993 |
msgid "Billing Fields Name"
|
| 994 |
msgstr ""
|
| 995 |
|
| 996 |
+
#: index.php:249
|
| 997 |
msgid "Save the billing fields names"
|
| 998 |
msgstr ""
|
| 999 |
|
| 1000 |
+
#: index.php:266
|
| 1001 |
msgid "Shipping Fields"
|
| 1002 |
msgstr ""
|
| 1003 |
|
| 1004 |
+
#: index.php:266
|
| 1005 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
| 1006 |
msgstr ""
|
| 1007 |
|
| 1008 |
+
#: index.php:267
|
| 1009 |
msgid "Shipping Fields Order"
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
+
#: index.php:267
|
| 1013 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
+
#: index.php:268
|
| 1017 |
msgid "Shipping Fields Name"
|
| 1018 |
msgstr ""
|
| 1019 |
|
| 1020 |
+
#: index.php:268
|
| 1021 |
msgid "Save the shipping fields names"
|
| 1022 |
msgstr ""
|
| 1023 |
|
| 1024 |
+
#: index.php:296
|
| 1025 |
msgid "Field Name"
|
| 1026 |
msgstr ""
|
| 1027 |
|
| 1028 |
+
#: index.php:297, ../profile-builder-2.0/admin/manage-fields.php:203
|
| 1029 |
msgid "Required"
|
| 1030 |
msgstr ""
|
| 1031 |
|
| 1032 |
+
#: index.php:360
|
| 1033 |
msgid "Click to edit "
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
+
#: index.php:384, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
|
| 1037 |
msgid "The email you entered is not a valid email address."
|
| 1038 |
msgstr ""
|
| 1039 |
|
| 1040 |
+
#: index.php:642
|
| 1041 |
msgid "No options available. Please select one country."
|
| 1042 |
msgstr ""
|
| 1043 |
|
| 1044 |
+
#: index.php:661, index.php:686
|
| 1045 |
msgid "Billing "
|
| 1046 |
msgstr ""
|
| 1047 |
|
| 1048 |
+
#: index.php:669, index.php:693
|
| 1049 |
msgid "Shipping "
|
| 1050 |
msgstr ""
|
| 1051 |
|
| 1052 |
+
#: index.php:846
|
| 1053 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
| 1054 |
msgstr ""
|
| 1055 |
|
| 1056 |
+
#: woo-checkout-field-support.php:63
|
| 1057 |
msgid "Display on WooCommerce Checkout"
|
| 1058 |
msgstr ""
|
| 1059 |
|
| 1060 |
+
#: woo-checkout-field-support.php:63
|
| 1061 |
msgid "Whether the field should be added to the WooCommerce checkout form or not"
|
| 1062 |
msgstr ""
|
| 1063 |
|
| 1064 |
+
#: woosync-page.php:23, woosync-page.php:23, woosync-page.php:70
|
| 1065 |
msgid "WooCommerce Sync"
|
| 1066 |
msgstr ""
|
| 1067 |
|
| 1068 |
+
#: woosync-page.php:76
|
| 1069 |
msgid "Choose Register form to display on My Account page:"
|
| 1070 |
msgstr ""
|
| 1071 |
|
| 1072 |
+
#: woosync-page.php:81
|
| 1073 |
msgid "Default Register"
|
| 1074 |
msgstr ""
|
| 1075 |
|
| 1076 |
+
#: woosync-page.php:104
|
| 1077 |
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
| 1078 |
msgstr ""
|
| 1079 |
|
| 1080 |
+
#: woosync-page.php:111
|
| 1081 |
msgid "Choose Edit Profile form to display on My Account page:"
|
| 1082 |
msgstr ""
|
| 1083 |
|
| 1084 |
+
#: woosync-page.php:139
|
| 1085 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
| 1086 |
msgstr ""
|
| 1087 |
|
| 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:737, ../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 |
|
| 1487 |
msgid "required"
|
| 1488 |
msgstr ""
|
| 1489 |
|
| 1490 |
+
#: ../pb-add-on-social-connect/facebook/facebook.php:32
|
| 1491 |
msgid "Link with Facebook"
|
| 1492 |
msgstr ""
|
| 1493 |
|
| 1494 |
+
#: ../pb-add-on-social-connect/facebook/facebook.php:38
|
| 1495 |
msgid "Sign in with Facebook"
|
| 1496 |
msgstr ""
|
| 1497 |
|
| 1498 |
+
#: ../pb-add-on-social-connect/google/google.php:39
|
| 1499 |
msgid "Link with Google+"
|
| 1500 |
msgstr ""
|
| 1501 |
|
| 1502 |
+
#: ../pb-add-on-social-connect/google/google.php:45
|
| 1503 |
msgid "Sign in with Google+"
|
| 1504 |
msgstr ""
|
| 1505 |
|
| 1506 |
+
#: ../pb-add-on-social-connect/linkedin/linkedin.php:40
|
| 1507 |
msgid "Link with LinkedIn"
|
| 1508 |
msgstr ""
|
| 1509 |
|
| 1510 |
+
#: ../pb-add-on-social-connect/linkedin/linkedin.php:46
|
| 1511 |
msgid "Sign in with LinkedIn"
|
| 1512 |
msgstr ""
|
| 1513 |
|
| 1514 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:52
|
| 1515 |
msgid "Connection with twitter Failed"
|
| 1516 |
msgstr ""
|
| 1517 |
|
| 1518 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:57
|
| 1519 |
msgid "Error Receiving Request Token"
|
| 1520 |
msgstr ""
|
| 1521 |
|
| 1522 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:141
|
| 1523 |
msgid "Link with Twitter"
|
| 1524 |
msgstr ""
|
| 1525 |
|
| 1526 |
+
#: ../pb-add-on-social-connect/twitter/twitter.php:147
|
| 1527 |
msgid "Sign in with Twitter"
|
| 1528 |
msgstr ""
|
| 1529 |
|
| 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:571, ../profile-builder-2.0/features/functions.php:595
|
| 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:571, ../profile-builder-2.0/features/functions.php:595
|
| 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:571, ../profile-builder-2.0/features/functions.php:595
|
| 1711 |
msgid "Strong"
|
| 1712 |
msgstr ""
|
| 1713 |
|
| 1727 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
| 1728 |
msgstr ""
|
| 1729 |
|
| 1730 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:240
|
| 1731 |
+
msgid "View Profile Builder documentation"
|
| 1732 |
+
msgstr ""
|
| 1733 |
+
|
| 1734 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:240
|
| 1735 |
+
msgid "Docs"
|
| 1736 |
+
msgstr ""
|
| 1737 |
+
|
| 1738 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:260
|
| 1739 |
msgid "Extend WooCommerce checkout page with support for all the Profile Builder Pro custom field types, conditional logic and repeater fields with the latest <strong>WooSync addon</strong> for Profile Builder."
|
| 1740 |
msgstr ""
|
| 1741 |
|
| 1742 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:262
|
| 1743 |
msgid "Check it out!"
|
| 1744 |
msgstr ""
|
| 1745 |
|
| 1746 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:263
|
| 1747 |
msgid "Dismiss this notice."
|
| 1748 |
msgstr ""
|
| 1749 |
|
| 2111 |
msgid "Username and Email"
|
| 2112 |
msgstr ""
|
| 2113 |
|
| 2114 |
+
#: ../profile-builder-2.0/admin/general-settings.php:199, ../profile-builder-2.0/admin/manage-fields.php:244, ../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
|
| 2115 |
msgid "Username"
|
| 2116 |
msgstr ""
|
| 2117 |
|
| 2148 |
msgstr ""
|
| 2149 |
|
| 2150 |
#: ../profile-builder-2.0/admin/manage-fields.php:12
|
| 2151 |
+
msgid "Form Fields"
|
| 2152 |
msgstr ""
|
| 2153 |
|
| 2154 |
#: ../profile-builder-2.0/admin/manage-fields.php:13
|
| 2155 |
+
msgid "Manage Form Fields"
|
| 2156 |
msgstr ""
|
| 2157 |
|
| 2158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:116
|
| 2159 |
msgid "Choose one of the supported field types"
|
| 2160 |
msgstr ""
|
| 2161 |
|
| 2162 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:118
|
| 2163 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
| 2164 |
msgstr ""
|
| 2165 |
|
| 2166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:151
|
| 2167 |
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"
|
| 2168 |
msgstr ""
|
| 2169 |
|
| 2170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:154
|
| 2171 |
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"
|
| 2172 |
msgstr ""
|
| 2173 |
|
| 2174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:160
|
| 2175 |
msgid "Field Title"
|
| 2176 |
msgstr ""
|
| 2177 |
|
| 2178 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:160
|
| 2179 |
msgid "Title of the field"
|
| 2180 |
msgstr ""
|
| 2181 |
|
| 2182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:161, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
| 2183 |
msgid "Field"
|
| 2184 |
msgstr ""
|
| 2185 |
|
| 2186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:162
|
| 2187 |
msgid "Meta-name"
|
| 2188 |
msgstr ""
|
| 2189 |
|
| 2190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:163, ../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
|
| 2191 |
msgid "ID"
|
| 2192 |
msgstr ""
|
| 2193 |
|
| 2194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:163, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:267
|
| 2195 |
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"
|
| 2196 |
msgstr ""
|
| 2197 |
|
| 2198 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:164
|
| 2199 |
msgid "Description"
|
| 2200 |
msgstr ""
|
| 2201 |
|
| 2202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:164
|
| 2203 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
| 2204 |
msgstr ""
|
| 2205 |
|
| 2206 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:165
|
| 2207 |
msgid "Row Count"
|
| 2208 |
msgstr ""
|
| 2209 |
|
| 2210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:165
|
| 2211 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
| 2212 |
msgstr ""
|
| 2213 |
|
| 2214 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
| 2215 |
msgid "Allowed Image Extensions"
|
| 2216 |
msgstr ""
|
| 2217 |
|
| 2218 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
| 2219 |
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 (.*)"
|
| 2220 |
msgstr ""
|
| 2221 |
|
| 2222 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:167
|
| 2223 |
msgid "Allowed Upload Extensions"
|
| 2224 |
msgstr ""
|
| 2225 |
|
| 2226 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:167
|
| 2227 |
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 (.*)"
|
| 2228 |
msgstr ""
|
| 2229 |
|
| 2230 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
| 2231 |
msgid "Avatar Size"
|
| 2232 |
msgstr ""
|
| 2233 |
|
| 2234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
| 2235 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
| 2236 |
msgstr ""
|
| 2237 |
|
| 2238 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
| 2239 |
msgid "Date-format"
|
| 2240 |
msgstr ""
|
| 2241 |
|
| 2242 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
| 2243 |
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"
|
| 2244 |
msgstr ""
|
| 2245 |
|
| 2246 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
| 2247 |
msgid "Terms of Agreement"
|
| 2248 |
msgstr ""
|
| 2249 |
|
| 2250 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
| 2251 |
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>"
|
| 2252 |
msgstr ""
|
| 2253 |
|
| 2254 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:171
|
| 2255 |
msgid "Options"
|
| 2256 |
msgstr ""
|
| 2257 |
|
| 2258 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:171
|
| 2259 |
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"
|
| 2260 |
msgstr ""
|
| 2261 |
|
| 2262 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:172
|
| 2263 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
| 2264 |
msgstr ""
|
| 2265 |
|
| 2266 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:173
|
| 2267 |
msgid "reCAPTCHA Type"
|
| 2268 |
msgstr ""
|
| 2269 |
|
| 2270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:173
|
| 2271 |
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."
|
| 2272 |
msgstr ""
|
| 2273 |
|
| 2274 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:174
|
| 2275 |
msgid "Site Key"
|
| 2276 |
msgstr ""
|
| 2277 |
|
| 2278 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:174
|
| 2279 |
msgid "The site 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:175
|
| 2283 |
msgid "Secret Key"
|
| 2284 |
msgstr ""
|
| 2285 |
|
| 2286 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:175
|
| 2287 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
| 2288 |
msgstr ""
|
| 2289 |
|
| 2290 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:176
|
| 2291 |
msgid "Display on PB forms"
|
| 2292 |
msgstr ""
|
| 2293 |
|
| 2294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:176
|
| 2295 |
msgid "PB Login"
|
| 2296 |
msgstr ""
|
| 2297 |
|
| 2298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:176
|
| 2299 |
msgid "PB Register"
|
| 2300 |
msgstr ""
|
| 2301 |
|
| 2302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:176
|
| 2303 |
msgid "PB Recover Password"
|
| 2304 |
msgstr ""
|
| 2305 |
|
| 2306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:176
|
| 2307 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
| 2308 |
msgstr ""
|
| 2309 |
|
| 2310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2311 |
msgid "Display on default WP forms"
|
| 2312 |
msgstr ""
|
| 2313 |
|
| 2314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2315 |
msgid "Default WP Login"
|
| 2316 |
msgstr ""
|
| 2317 |
|
| 2318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2319 |
msgid "Default WP Register"
|
| 2320 |
msgstr ""
|
| 2321 |
|
| 2322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2323 |
msgid "Default WP Recover Password"
|
| 2324 |
msgstr ""
|
| 2325 |
|
| 2326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2327 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
| 2328 |
msgstr ""
|
| 2329 |
|
| 2330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178
|
| 2331 |
msgid "User Roles"
|
| 2332 |
msgstr ""
|
| 2333 |
|
| 2334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178
|
| 2335 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
| 2336 |
msgstr ""
|
| 2337 |
|
| 2338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:179
|
| 2339 |
msgid "User Roles Order"
|
| 2340 |
msgstr ""
|
| 2341 |
|
| 2342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:179
|
| 2343 |
msgid "Save the user role order from the user roles checkboxes"
|
| 2344 |
msgstr ""
|
| 2345 |
|
| 2346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:180
|
| 2347 |
msgid "Default Value"
|
| 2348 |
msgstr ""
|
| 2349 |
|
| 2350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:180
|
| 2351 |
msgid "Default value of the field"
|
| 2352 |
msgstr ""
|
| 2353 |
|
| 2354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:181, ../profile-builder-2.0/admin/manage-fields.php:183, ../profile-builder-2.0/admin/manage-fields.php:184, ../profile-builder-2.0/admin/manage-fields.php:185
|
| 2355 |
msgid "Default Option"
|
| 2356 |
msgstr ""
|
| 2357 |
|
| 2358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:181
|
| 2359 |
msgid "Specify the option which should be selected by default"
|
| 2360 |
msgstr ""
|
| 2361 |
|
| 2362 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:182
|
| 2363 |
msgid "Default Option(s)"
|
| 2364 |
msgstr ""
|
| 2365 |
|
| 2366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:182
|
| 2367 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
| 2368 |
msgstr ""
|
| 2369 |
|
| 2370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:183, ../profile-builder-2.0/admin/manage-fields.php:184, ../profile-builder-2.0/admin/manage-fields.php:185
|
| 2371 |
msgid "Default option of the field"
|
| 2372 |
msgstr ""
|
| 2373 |
|
| 2374 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:186
|
| 2375 |
msgid "Show Currency Symbol"
|
| 2376 |
msgstr ""
|
| 2377 |
|
| 2378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:186
|
| 2379 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
| 2380 |
msgstr ""
|
| 2381 |
|
| 2382 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:187
|
| 2383 |
msgid "Show Post Type"
|
| 2384 |
msgstr ""
|
| 2385 |
|
| 2386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:187
|
| 2387 |
msgid "Posts from what post type will be displayed in the select."
|
| 2388 |
msgstr ""
|
| 2389 |
|
| 2390 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:188
|
| 2391 |
msgid "Allowable Values"
|
| 2392 |
msgstr ""
|
| 2393 |
|
| 2394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:188
|
| 2395 |
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."
|
| 2396 |
msgstr ""
|
| 2397 |
|
| 2398 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:189
|
| 2399 |
msgid "Error Message"
|
| 2400 |
msgstr ""
|
| 2401 |
|
| 2402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:189
|
| 2403 |
msgid "Set a custom error message that will be displayed to the user."
|
| 2404 |
msgstr ""
|
| 2405 |
|
| 2406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:190
|
| 2407 |
msgid "Time Format"
|
| 2408 |
msgstr ""
|
| 2409 |
|
| 2410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:190
|
| 2411 |
msgid "Specify the time format."
|
| 2412 |
msgstr ""
|
| 2413 |
|
| 2414 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:191
|
| 2415 |
msgid "Google Maps API Key"
|
| 2416 |
msgstr ""
|
| 2417 |
|
| 2418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:191
|
| 2419 |
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."
|
| 2420 |
msgstr ""
|
| 2421 |
|
| 2422 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:192
|
| 2423 |
msgid "Default Latitude"
|
| 2424 |
msgstr ""
|
| 2425 |
|
| 2426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:192
|
| 2427 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
| 2428 |
msgstr ""
|
| 2429 |
|
| 2430 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
| 2431 |
msgid "Default Longitude"
|
| 2432 |
msgstr ""
|
| 2433 |
|
| 2434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
| 2435 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
| 2436 |
msgstr ""
|
| 2437 |
|
| 2438 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
| 2439 |
msgid "Default Zoom Level"
|
| 2440 |
msgstr ""
|
| 2441 |
|
| 2442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
| 2443 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
| 2444 |
msgstr ""
|
| 2445 |
|
| 2446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:195
|
| 2447 |
msgid "Map Height"
|
| 2448 |
msgstr ""
|
| 2449 |
|
| 2450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:195
|
| 2451 |
msgid "The height of the map."
|
| 2452 |
msgstr ""
|
| 2453 |
|
| 2454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:196
|
| 2455 |
msgid "Default Content"
|
| 2456 |
msgstr ""
|
| 2457 |
|
| 2458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:196
|
| 2459 |
msgid "Default value of the textarea"
|
| 2460 |
msgstr ""
|
| 2461 |
|
| 2462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:197
|
| 2463 |
msgid "HTML Content"
|
| 2464 |
msgstr ""
|
| 2465 |
|
| 2466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:197
|
| 2467 |
msgid "Add your HTML (or text) content"
|
| 2468 |
msgstr ""
|
| 2469 |
|
| 2470 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:198
|
| 2471 |
msgid "Phone Format"
|
| 2472 |
msgstr ""
|
| 2473 |
|
| 2474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:198
|
| 2475 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
| 2476 |
msgstr ""
|
| 2477 |
|
| 2478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:198
|
| 2479 |
msgid "Eg. (###) ###-####"
|
| 2480 |
msgstr ""
|
| 2481 |
|
| 2482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:198
|
| 2483 |
msgid "Empty field won't check for correct phone number."
|
| 2484 |
msgstr ""
|
| 2485 |
|
| 2486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:199
|
| 2487 |
msgid "Heading Tag"
|
| 2488 |
msgstr ""
|
| 2489 |
|
| 2490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:199
|
| 2491 |
msgid "Change heading field size on front-end forms"
|
| 2492 |
msgstr ""
|
| 2493 |
|
| 2494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:200
|
| 2495 |
msgid "Min Number Value"
|
| 2496 |
msgstr ""
|
| 2497 |
|
| 2498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:200
|
| 2499 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
| 2500 |
msgstr ""
|
| 2501 |
|
| 2502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:200
|
| 2503 |
msgid "Leave it empty for no min value"
|
| 2504 |
msgstr ""
|
| 2505 |
|
| 2506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:201
|
| 2507 |
msgid "Max Number Value"
|
| 2508 |
msgstr ""
|
| 2509 |
|
| 2510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:201
|
| 2511 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
| 2512 |
msgstr ""
|
| 2513 |
|
| 2514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:201
|
| 2515 |
msgid "Leave it empty for no max value"
|
| 2516 |
msgstr ""
|
| 2517 |
|
| 2518 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:202
|
| 2519 |
msgid "Number Step Value"
|
| 2520 |
msgstr ""
|
| 2521 |
|
| 2522 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:202
|
| 2523 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
| 2524 |
msgstr ""
|
| 2525 |
|
| 2526 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:202
|
| 2527 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
| 2528 |
msgstr ""
|
| 2529 |
|
| 2530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:202
|
| 2531 |
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)"
|
| 2532 |
msgstr ""
|
| 2533 |
|
| 2534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:202
|
| 2535 |
msgid "Leave it empty for no restriction"
|
| 2536 |
msgstr ""
|
| 2537 |
|
| 2538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:203
|
| 2539 |
msgid "Whether the field is required or not"
|
| 2540 |
msgstr ""
|
| 2541 |
|
| 2542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:204
|
| 2543 |
msgid "Overwrite Existing"
|
| 2544 |
msgstr ""
|
| 2545 |
|
| 2546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:204
|
| 2547 |
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"
|
| 2548 |
msgstr ""
|
| 2549 |
|
| 2550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:210
|
| 2551 |
+
msgid "Form Field Properties"
|
| 2552 |
msgstr ""
|
| 2553 |
|
| 2554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:224
|
| 2555 |
+
msgid "Registration & Edit Profile Forms"
|
| 2556 |
msgstr ""
|
| 2557 |
|
| 2558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:244
|
| 2559 |
msgid "Usernames cannot be changed."
|
| 2560 |
msgstr ""
|
| 2561 |
|
| 2562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:247, ../profile-builder-2.0/modules/user-listing/userlisting.php:808, ../profile-builder-2.0/modules/user-listing/userlisting.php:2277
|
| 2563 |
msgid "Nickname"
|
| 2564 |
msgstr ""
|
| 2565 |
|
| 2566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:248
|
| 2567 |
msgid "Display name publicly as"
|
| 2568 |
msgstr ""
|
| 2569 |
|
| 2570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:250, ../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
|
| 2571 |
msgid "E-mail"
|
| 2572 |
msgstr ""
|
| 2573 |
|
| 2574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:251, ../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
|
| 2575 |
msgid "Website"
|
| 2576 |
msgstr ""
|
| 2577 |
|
| 2578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:255
|
| 2579 |
msgid "AIM"
|
| 2580 |
msgstr ""
|
| 2581 |
|
| 2582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:256
|
| 2583 |
msgid "Yahoo IM"
|
| 2584 |
msgstr ""
|
| 2585 |
|
| 2586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:257
|
| 2587 |
msgid "Jabber / Google Talk"
|
| 2588 |
msgstr ""
|
| 2589 |
|
| 2590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:261, ../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
|
| 2591 |
msgid "Biographical Info"
|
| 2592 |
msgstr ""
|
| 2593 |
|
| 2594 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:261
|
| 2595 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
| 2596 |
msgstr ""
|
| 2597 |
|
| 2598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:262, ../profile-builder-2.0/front-end/recover.php:73, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:30
|
| 2599 |
msgid "Password"
|
| 2600 |
msgstr ""
|
| 2601 |
|
| 2602 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:262
|
| 2603 |
msgid "Type your password."
|
| 2604 |
msgstr ""
|
| 2605 |
|
| 2606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:263, ../profile-builder-2.0/front-end/recover.php:74
|
| 2607 |
msgid "Repeat Password"
|
| 2608 |
msgstr ""
|
| 2609 |
|
| 2610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:263
|
| 2611 |
msgid "Type your password again. "
|
| 2612 |
msgstr ""
|
| 2613 |
|
| 2614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:265
|
| 2615 |
msgid "Blog Details"
|
| 2616 |
msgstr ""
|
| 2617 |
|
| 2618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:325, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2619 |
msgid "Afghanistan"
|
| 2620 |
msgstr ""
|
| 2621 |
|
| 2622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:326, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2623 |
msgid "Aland Islands"
|
| 2624 |
msgstr ""
|
| 2625 |
|
| 2626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:327, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2627 |
msgid "Albania"
|
| 2628 |
msgstr ""
|
| 2629 |
|
| 2630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:328, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2631 |
msgid "Algeria"
|
| 2632 |
msgstr ""
|
| 2633 |
|
| 2634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:329, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2635 |
msgid "American Samoa"
|
| 2636 |
msgstr ""
|
| 2637 |
|
| 2638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:330, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2639 |
msgid "Andorra"
|
| 2640 |
msgstr ""
|
| 2641 |
|
| 2642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:331, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2643 |
msgid "Angola"
|
| 2644 |
msgstr ""
|
| 2645 |
|
| 2646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:332, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2647 |
msgid "Anguilla"
|
| 2648 |
msgstr ""
|
| 2649 |
|
| 2650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:333, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2651 |
msgid "Antarctica"
|
| 2652 |
msgstr ""
|
| 2653 |
|
| 2654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:334, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2655 |
msgid "Antigua and Barbuda"
|
| 2656 |
msgstr ""
|
| 2657 |
|
| 2658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:335, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2659 |
msgid "Argentina"
|
| 2660 |
msgstr ""
|
| 2661 |
|
| 2662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:336, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2663 |
msgid "Armenia"
|
| 2664 |
msgstr ""
|
| 2665 |
|
| 2666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:337, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2667 |
msgid "Aruba"
|
| 2668 |
msgstr ""
|
| 2669 |
|
| 2670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:338, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2671 |
msgid "Australia"
|
| 2672 |
msgstr ""
|
| 2673 |
|
| 2674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:339, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2675 |
msgid "Austria"
|
| 2676 |
msgstr ""
|
| 2677 |
|
| 2678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:340, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2679 |
msgid "Azerbaijan"
|
| 2680 |
msgstr ""
|
| 2681 |
|
| 2682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:341, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2683 |
msgid "Bahamas"
|
| 2684 |
msgstr ""
|
| 2685 |
|
| 2686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:342, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2687 |
msgid "Bahrain"
|
| 2688 |
msgstr ""
|
| 2689 |
|
| 2690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:343, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2691 |
msgid "Bangladesh"
|
| 2692 |
msgstr ""
|
| 2693 |
|
| 2694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:344, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2695 |
msgid "Barbados"
|
| 2696 |
msgstr ""
|
| 2697 |
|
| 2698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:345, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2699 |
msgid "Belarus"
|
| 2700 |
msgstr ""
|
| 2701 |
|
| 2702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:346, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2703 |
msgid "Belgium"
|
| 2704 |
msgstr ""
|
| 2705 |
|
| 2706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:347, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2707 |
msgid "Belize"
|
| 2708 |
msgstr ""
|
| 2709 |
|
| 2710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:348, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2711 |
msgid "Benin"
|
| 2712 |
msgstr ""
|
| 2713 |
|
| 2714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:349, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2715 |
msgid "Bermuda"
|
| 2716 |
msgstr ""
|
| 2717 |
|
| 2718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:350, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2719 |
msgid "Bhutan"
|
| 2720 |
msgstr ""
|
| 2721 |
|
| 2722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:351
|
| 2723 |
msgid "Bolivia"
|
| 2724 |
msgstr ""
|
| 2725 |
|
| 2726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:352
|
| 2727 |
msgid "Bonaire, Saint Eustatius and Saba"
|
| 2728 |
msgstr ""
|
| 2729 |
|
| 2730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:353, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2731 |
msgid "Bosnia and Herzegovina"
|
| 2732 |
msgstr ""
|
| 2733 |
|
| 2734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:354, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2735 |
msgid "Botswana"
|
| 2736 |
msgstr ""
|
| 2737 |
|
| 2738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:355, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2739 |
msgid "Bouvet Island"
|
| 2740 |
msgstr ""
|
| 2741 |
|
| 2742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:356, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2743 |
msgid "Brazil"
|
| 2744 |
msgstr ""
|
| 2745 |
|
| 2746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:357, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2747 |
msgid "British Indian Ocean Territory"
|
| 2748 |
msgstr ""
|
| 2749 |
|
| 2750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:358
|
| 2751 |
msgid "British Virgin Islands"
|
| 2752 |
msgstr ""
|
| 2753 |
|
| 2754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:359
|
| 2755 |
msgid "Brunei"
|
| 2756 |
msgstr ""
|
| 2757 |
|
| 2758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:360, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2759 |
msgid "Bulgaria"
|
| 2760 |
msgstr ""
|
| 2761 |
|
| 2762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:361, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2763 |
msgid "Burkina Faso"
|
| 2764 |
msgstr ""
|
| 2765 |
|
| 2766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:362, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2767 |
msgid "Burundi"
|
| 2768 |
msgstr ""
|
| 2769 |
|
| 2770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:363, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2771 |
msgid "Cambodia"
|
| 2772 |
msgstr ""
|
| 2773 |
|
| 2774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:364, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2775 |
msgid "Cameroon"
|
| 2776 |
msgstr ""
|
| 2777 |
|
| 2778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:365, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2779 |
msgid "Canada"
|
| 2780 |
msgstr ""
|
| 2781 |
|
| 2782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:366
|
| 2783 |
msgid "Cape Verde"
|
| 2784 |
msgstr ""
|
| 2785 |
|
| 2786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:367, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2787 |
msgid "Cayman Islands"
|
| 2788 |
msgstr ""
|
| 2789 |
|
| 2790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:368, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2791 |
msgid "Central African Republic"
|
| 2792 |
msgstr ""
|
| 2793 |
|
| 2794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:369, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2795 |
msgid "Chad"
|
| 2796 |
msgstr ""
|
| 2797 |
|
| 2798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:370, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2799 |
msgid "Chile"
|
| 2800 |
msgstr ""
|
| 2801 |
|
| 2802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:371, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2803 |
msgid "China"
|
| 2804 |
msgstr ""
|
| 2805 |
|
| 2806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:372, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2807 |
msgid "Christmas Island"
|
| 2808 |
msgstr ""
|
| 2809 |
|
| 2810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:373
|
| 2811 |
msgid "Cocos Islands"
|
| 2812 |
msgstr ""
|
| 2813 |
|
| 2814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:374, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2815 |
msgid "Colombia"
|
| 2816 |
msgstr ""
|
| 2817 |
|
| 2818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:375, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2819 |
msgid "Comoros"
|
| 2820 |
msgstr ""
|
| 2821 |
|
| 2822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:376, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2823 |
msgid "Cook Islands"
|
| 2824 |
msgstr ""
|
| 2825 |
|
| 2826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:377, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2827 |
msgid "Costa Rica"
|
| 2828 |
msgstr ""
|
| 2829 |
|
| 2830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:378, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2831 |
msgid "Croatia"
|
| 2832 |
msgstr ""
|
| 2833 |
|
| 2834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:379, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2835 |
msgid "Cuba"
|
| 2836 |
msgstr ""
|
| 2837 |
|
| 2838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:380, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2839 |
msgid "Curacao"
|
| 2840 |
msgstr ""
|
| 2841 |
|
| 2842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:381, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2843 |
msgid "Cyprus"
|
| 2844 |
msgstr ""
|
| 2845 |
|
| 2846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:382, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2847 |
msgid "Czech Republic"
|
| 2848 |
msgstr ""
|
| 2849 |
|
| 2850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:383
|
| 2851 |
msgid "Democratic Republic of the Congo"
|
| 2852 |
msgstr ""
|
| 2853 |
|
| 2854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:384, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2855 |
msgid "Denmark"
|
| 2856 |
msgstr ""
|
| 2857 |
|
| 2858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:385, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2859 |
msgid "Djibouti"
|
| 2860 |
msgstr ""
|
| 2861 |
|
| 2862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:386, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2863 |
msgid "Dominica"
|
| 2864 |
msgstr ""
|
| 2865 |
|
| 2866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:387, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2867 |
msgid "Dominican Republic"
|
| 2868 |
msgstr ""
|
| 2869 |
|
| 2870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:388
|
| 2871 |
msgid "East Timor"
|
| 2872 |
msgstr ""
|
| 2873 |
|
| 2874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:389, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2875 |
msgid "Ecuador"
|
| 2876 |
msgstr ""
|
| 2877 |
|
| 2878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:390, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2879 |
msgid "Egypt"
|
| 2880 |
msgstr ""
|
| 2881 |
|
| 2882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:391, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2883 |
msgid "El Salvador"
|
| 2884 |
msgstr ""
|
| 2885 |
|
| 2886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:392, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2887 |
msgid "Equatorial Guinea"
|
| 2888 |
msgstr ""
|
| 2889 |
|
| 2890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:393, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2891 |
msgid "Eritrea"
|
| 2892 |
msgstr ""
|
| 2893 |
|
| 2894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:394, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2895 |
msgid "Estonia"
|
| 2896 |
msgstr ""
|
| 2897 |
|
| 2898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:395, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2899 |
msgid "Ethiopia"
|
| 2900 |
msgstr ""
|
| 2901 |
|
| 2902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:396
|
| 2903 |
msgid "Falkland Islands"
|
| 2904 |
msgstr ""
|
| 2905 |
|
| 2906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:397, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2907 |
msgid "Faroe Islands"
|
| 2908 |
msgstr ""
|
| 2909 |
|
| 2910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:398, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2911 |
msgid "Fiji"
|
| 2912 |
msgstr ""
|
| 2913 |
|
| 2914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:399, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2915 |
msgid "Finland"
|
| 2916 |
msgstr ""
|
| 2917 |
|
| 2918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:400, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2919 |
msgid "France"
|
| 2920 |
msgstr ""
|
| 2921 |
|
| 2922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:401, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2923 |
msgid "French Guiana"
|
| 2924 |
msgstr ""
|
| 2925 |
|
| 2926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:402, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2927 |
msgid "French Polynesia"
|
| 2928 |
msgstr ""
|
| 2929 |
|
| 2930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:403, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2931 |
msgid "French Southern Territories"
|
| 2932 |
msgstr ""
|
| 2933 |
|
| 2934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:404, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2935 |
msgid "Gabon"
|
| 2936 |
msgstr ""
|
| 2937 |
|
| 2938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:405, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2939 |
msgid "Gambia"
|
| 2940 |
msgstr ""
|
| 2941 |
|
| 2942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:406, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2943 |
msgid "Georgia"
|
| 2944 |
msgstr ""
|
| 2945 |
|
| 2946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:407, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2947 |
msgid "Germany"
|
| 2948 |
msgstr ""
|
| 2949 |
|
| 2950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:408, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2951 |
msgid "Ghana"
|
| 2952 |
msgstr ""
|
| 2953 |
|
| 2954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:409, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2955 |
msgid "Gibraltar"
|
| 2956 |
msgstr ""
|
| 2957 |
|
| 2958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:410, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2959 |
msgid "Greece"
|
| 2960 |
msgstr ""
|
| 2961 |
|
| 2962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:411, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2963 |
msgid "Greenland"
|
| 2964 |
msgstr ""
|
| 2965 |
|
| 2966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:412, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2967 |
msgid "Grenada"
|
| 2968 |
msgstr ""
|
| 2969 |
|
| 2970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:413, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2971 |
msgid "Guadeloupe"
|
| 2972 |
msgstr ""
|
| 2973 |
|
| 2974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:414, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2975 |
msgid "Guam"
|
| 2976 |
msgstr ""
|
| 2977 |
|
| 2978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:415, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2979 |
msgid "Guatemala"
|
| 2980 |
msgstr ""
|
| 2981 |
|
| 2982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:416, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2983 |
msgid "Guernsey"
|
| 2984 |
msgstr ""
|
| 2985 |
|
| 2986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:417, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2987 |
msgid "Guinea"
|
| 2988 |
msgstr ""
|
| 2989 |
|
| 2990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:418, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2991 |
msgid "Guinea-Bissau"
|
| 2992 |
msgstr ""
|
| 2993 |
|
| 2994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:419, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2995 |
msgid "Guyana"
|
| 2996 |
msgstr ""
|
| 2997 |
|
| 2998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:420, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2999 |
msgid "Haiti"
|
| 3000 |
msgstr ""
|
| 3001 |
|
| 3002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:421, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3003 |
msgid "Heard Island and McDonald Islands"
|
| 3004 |
msgstr ""
|
| 3005 |
|
| 3006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:422, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3007 |
msgid "Honduras"
|
| 3008 |
msgstr ""
|
| 3009 |
|
| 3010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:423, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3011 |
msgid "Hong Kong"
|
| 3012 |
msgstr ""
|
| 3013 |
|
| 3014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:424, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3015 |
msgid "Hungary"
|
| 3016 |
msgstr ""
|
| 3017 |
|
| 3018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:425, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3019 |
msgid "Iceland"
|
| 3020 |
msgstr ""
|
| 3021 |
|
| 3022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:426, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3023 |
msgid "India"
|
| 3024 |
msgstr ""
|
| 3025 |
|
| 3026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:427, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3027 |
msgid "Indonesia"
|
| 3028 |
msgstr ""
|
| 3029 |
|
| 3030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:428
|
| 3031 |
msgid "Iran"
|
| 3032 |
msgstr ""
|
| 3033 |
|
| 3034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:429, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3035 |
msgid "Iraq"
|
| 3036 |
msgstr ""
|
| 3037 |
|
| 3038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:430, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3039 |
msgid "Ireland"
|
| 3040 |
msgstr ""
|
| 3041 |
|
| 3042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:431, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3043 |
msgid "Isle of Man"
|
| 3044 |
msgstr ""
|
| 3045 |
|
| 3046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:432, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3047 |
msgid "Israel"
|
| 3048 |
msgstr ""
|
| 3049 |
|
| 3050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:433, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3051 |
msgid "Italy"
|
| 3052 |
msgstr ""
|
| 3053 |
|
| 3054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:434
|
| 3055 |
msgid "Ivory Coast"
|
| 3056 |
msgstr ""
|
| 3057 |
|
| 3058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:435, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3059 |
msgid "Jamaica"
|
| 3060 |
msgstr ""
|
| 3061 |
|
| 3062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:436, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3063 |
msgid "Japan"
|
| 3064 |
msgstr ""
|
| 3065 |
|
| 3066 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:437, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3067 |
msgid "Jersey"
|
| 3068 |
msgstr ""
|
| 3069 |
|
| 3070 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:438, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3071 |
msgid "Jordan"
|
| 3072 |
msgstr ""
|
| 3073 |
|
| 3074 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:439, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3075 |
msgid "Kazakhstan"
|
| 3076 |
msgstr ""
|
| 3077 |
|
| 3078 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:440, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3079 |
msgid "Kenya"
|
| 3080 |
msgstr ""
|
| 3081 |
|
| 3082 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:441, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3083 |
msgid "Kiribati"
|
| 3084 |
msgstr ""
|
| 3085 |
|
| 3086 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:442
|
| 3087 |
msgid "Kosovo"
|
| 3088 |
msgstr ""
|
| 3089 |
|
| 3090 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:443, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3091 |
msgid "Kuwait"
|
| 3092 |
msgstr ""
|
| 3093 |
|
| 3094 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:444, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3095 |
msgid "Kyrgyzstan"
|
| 3096 |
msgstr ""
|
| 3097 |
|
| 3098 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:445
|
| 3099 |
msgid "Laos"
|
| 3100 |
msgstr ""
|
| 3101 |
|
| 3102 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:446, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3103 |
msgid "Latvia"
|
| 3104 |
msgstr ""
|
| 3105 |
|
| 3106 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:447, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3107 |
msgid "Lebanon"
|
| 3108 |
msgstr ""
|
| 3109 |
|
| 3110 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:448, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3111 |
msgid "Lesotho"
|
| 3112 |
msgstr ""
|
| 3113 |
|
| 3114 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:449, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3115 |
msgid "Liberia"
|
| 3116 |
msgstr ""
|
| 3117 |
|
| 3118 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:450, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3119 |
msgid "Libya"
|
| 3120 |
msgstr ""
|
| 3121 |
|
| 3122 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:451, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3123 |
msgid "Liechtenstein"
|
| 3124 |
msgstr ""
|
| 3125 |
|
| 3126 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:452, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3127 |
msgid "Lithuania"
|
| 3128 |
msgstr ""
|
| 3129 |
|
| 3130 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:453, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3131 |
msgid "Luxembourg"
|
| 3132 |
msgstr ""
|
| 3133 |
|
| 3134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:454, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3135 |
msgid "Macao"
|
| 3136 |
msgstr ""
|
| 3137 |
|
| 3138 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:455
|
| 3139 |
msgid "Macedonia"
|
| 3140 |
msgstr ""
|
| 3141 |
|
| 3142 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:456, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3143 |
msgid "Madagascar"
|
| 3144 |
msgstr ""
|
| 3145 |
|
| 3146 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:457, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3147 |
msgid "Malawi"
|
| 3148 |
msgstr ""
|
| 3149 |
|
| 3150 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:458, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3151 |
msgid "Malaysia"
|
| 3152 |
msgstr ""
|
| 3153 |
|
| 3154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:459, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3155 |
msgid "Maldives"
|
| 3156 |
msgstr ""
|
| 3157 |
|
| 3158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:460, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3159 |
msgid "Mali"
|
| 3160 |
msgstr ""
|
| 3161 |
|
| 3162 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:461, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3163 |
msgid "Malta"
|
| 3164 |
msgstr ""
|
| 3165 |
|
| 3166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:462, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3167 |
msgid "Marshall Islands"
|
| 3168 |
msgstr ""
|
| 3169 |
|
| 3170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:463, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3171 |
msgid "Martinique"
|
| 3172 |
msgstr ""
|
| 3173 |
|
| 3174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:464, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3175 |
msgid "Mauritania"
|
| 3176 |
msgstr ""
|
| 3177 |
|
| 3178 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:465, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3179 |
msgid "Mauritius"
|
| 3180 |
msgstr ""
|
| 3181 |
|
| 3182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:466, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3183 |
msgid "Mayotte"
|
| 3184 |
msgstr ""
|
| 3185 |
|
| 3186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:467, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3187 |
msgid "Mexico"
|
| 3188 |
msgstr ""
|
| 3189 |
|
| 3190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:468
|
| 3191 |
msgid "Micronesia"
|
| 3192 |
msgstr ""
|
| 3193 |
|
| 3194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:469
|
| 3195 |
msgid "Moldova"
|
| 3196 |
msgstr ""
|
| 3197 |
|
| 3198 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:470, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3199 |
msgid "Monaco"
|
| 3200 |
msgstr ""
|
| 3201 |
|
| 3202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:471, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3203 |
msgid "Mongolia"
|
| 3204 |
msgstr ""
|
| 3205 |
|
| 3206 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:472, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3207 |
msgid "Montenegro"
|
| 3208 |
msgstr ""
|
| 3209 |
|
| 3210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:473, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3211 |
msgid "Montserrat"
|
| 3212 |
msgstr ""
|
| 3213 |
|
| 3214 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:474, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3215 |
msgid "Morocco"
|
| 3216 |
msgstr ""
|
| 3217 |
|
| 3218 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:475, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3219 |
msgid "Mozambique"
|
| 3220 |
msgstr ""
|
| 3221 |
|
| 3222 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:476, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3223 |
msgid "Myanmar"
|
| 3224 |
msgstr ""
|
| 3225 |
|
| 3226 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:477, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3227 |
msgid "Namibia"
|
| 3228 |
msgstr ""
|
| 3229 |
|
| 3230 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:478, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3231 |
msgid "Nauru"
|
| 3232 |
msgstr ""
|
| 3233 |
|
| 3234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:479, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3235 |
msgid "Nepal"
|
| 3236 |
msgstr ""
|
| 3237 |
|
| 3238 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:480, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3239 |
msgid "Netherlands"
|
| 3240 |
msgstr ""
|
| 3241 |
|
| 3242 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:481, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3243 |
msgid "New Caledonia"
|
| 3244 |
msgstr ""
|
| 3245 |
|
| 3246 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:482, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3247 |
msgid "New Zealand"
|
| 3248 |
msgstr ""
|
| 3249 |
|
| 3250 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:483, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3251 |
msgid "Nicaragua"
|
| 3252 |
msgstr ""
|
| 3253 |
|
| 3254 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:484, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3255 |
msgid "Niger"
|
| 3256 |
msgstr ""
|
| 3257 |
|
| 3258 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:485, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3259 |
msgid "Nigeria"
|
| 3260 |
msgstr ""
|
| 3261 |
|
| 3262 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:486, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3263 |
msgid "Niue"
|
| 3264 |
msgstr ""
|
| 3265 |
|
| 3266 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:487, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3267 |
msgid "Norfolk Island"
|
| 3268 |
msgstr ""
|
| 3269 |
|
| 3270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:488
|
| 3271 |
msgid "North Korea"
|
| 3272 |
msgstr ""
|
| 3273 |
|
| 3274 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:489, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3275 |
msgid "Northern Mariana Islands"
|
| 3276 |
msgstr ""
|
| 3277 |
|
| 3278 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:490, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3279 |
msgid "Norway"
|
| 3280 |
msgstr ""
|
| 3281 |
|
| 3282 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:491, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3283 |
msgid "Oman"
|
| 3284 |
msgstr ""
|
| 3285 |
|
| 3286 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:492, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3287 |
msgid "Pakistan"
|
| 3288 |
msgstr ""
|
| 3289 |
|
| 3290 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:493, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3291 |
msgid "Palau"
|
| 3292 |
msgstr ""
|
| 3293 |
|
| 3294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:494
|
| 3295 |
msgid "Palestinian Territory"
|
| 3296 |
msgstr ""
|
| 3297 |
|
| 3298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:495, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3299 |
msgid "Panama"
|
| 3300 |
msgstr ""
|
| 3301 |
|
| 3302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:496, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3303 |
msgid "Papua New Guinea"
|
| 3304 |
msgstr ""
|
| 3305 |
|
| 3306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:497, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3307 |
msgid "Paraguay"
|
| 3308 |
msgstr ""
|
| 3309 |
|
| 3310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:498, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3311 |
msgid "Peru"
|
| 3312 |
msgstr ""
|
| 3313 |
|
| 3314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:499, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3315 |
msgid "Philippines"
|
| 3316 |
msgstr ""
|
| 3317 |
|
| 3318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:500, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3319 |
msgid "Pitcairn"
|
| 3320 |
msgstr ""
|
| 3321 |
|
| 3322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:501, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3323 |
msgid "Poland"
|
| 3324 |
msgstr ""
|
| 3325 |
|
| 3326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:502, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3327 |
msgid "Portugal"
|
| 3328 |
msgstr ""
|
| 3329 |
|
| 3330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:503, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3331 |
msgid "Puerto Rico"
|
| 3332 |
msgstr ""
|
| 3333 |
|
| 3334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:504, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3335 |
msgid "Qatar"
|
| 3336 |
msgstr ""
|
| 3337 |
|
| 3338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:505
|
| 3339 |
msgid "Republic of the Congo"
|
| 3340 |
msgstr ""
|
| 3341 |
|
| 3342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:506, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3343 |
msgid "Reunion"
|
| 3344 |
msgstr ""
|
| 3345 |
|
| 3346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:507, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3347 |
msgid "Romania"
|
| 3348 |
msgstr ""
|
| 3349 |
|
| 3350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:508
|
| 3351 |
msgid "Russia"
|
| 3352 |
msgstr ""
|
| 3353 |
|
| 3354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:509, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3355 |
msgid "Rwanda"
|
| 3356 |
msgstr ""
|
| 3357 |
|
| 3358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:510, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3359 |
msgid "Saint Barthelemy"
|
| 3360 |
msgstr ""
|
| 3361 |
|
| 3362 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:511
|
| 3363 |
msgid "Saint Helena"
|
| 3364 |
msgstr ""
|
| 3365 |
|
| 3366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:512, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3367 |
msgid "Saint Kitts and Nevis"
|
| 3368 |
msgstr ""
|
| 3369 |
|
| 3370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:513, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3371 |
msgid "Saint Lucia"
|
| 3372 |
msgstr ""
|
| 3373 |
|
| 3374 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:514
|
| 3375 |
msgid "Saint Martin"
|
| 3376 |
msgstr ""
|
| 3377 |
|
| 3378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:515, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3379 |
msgid "Saint Pierre and Miquelon"
|
| 3380 |
msgstr ""
|
| 3381 |
|
| 3382 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:516, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3383 |
msgid "Saint Vincent and the Grenadines"
|
| 3384 |
msgstr ""
|
| 3385 |
|
| 3386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:517, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3387 |
msgid "Samoa"
|
| 3388 |
msgstr ""
|
| 3389 |
|
| 3390 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:518, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3391 |
msgid "San Marino"
|
| 3392 |
msgstr ""
|
| 3393 |
|
| 3394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:519, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3395 |
msgid "Sao Tome and Principe"
|
| 3396 |
msgstr ""
|
| 3397 |
|
| 3398 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:520, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3399 |
msgid "Saudi Arabia"
|
| 3400 |
msgstr ""
|
| 3401 |
|
| 3402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:521, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3403 |
msgid "Senegal"
|
| 3404 |
msgstr ""
|
| 3405 |
|
| 3406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:522, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3407 |
msgid "Serbia"
|
| 3408 |
msgstr ""
|
| 3409 |
|
| 3410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:523, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3411 |
msgid "Seychelles"
|
| 3412 |
msgstr ""
|
| 3413 |
|
| 3414 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:524, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3415 |
msgid "Sierra Leone"
|
| 3416 |
msgstr ""
|
| 3417 |
|
| 3418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:525, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3419 |
msgid "Singapore"
|
| 3420 |
msgstr ""
|
| 3421 |
|
| 3422 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:526
|
| 3423 |
msgid "Sint Maarten"
|
| 3424 |
msgstr ""
|
| 3425 |
|
| 3426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:527, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3427 |
msgid "Slovakia"
|
| 3428 |
msgstr ""
|
| 3429 |
|
| 3430 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:528, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3431 |
msgid "Slovenia"
|
| 3432 |
msgstr ""
|
| 3433 |
|
| 3434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:529, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3435 |
msgid "Solomon Islands"
|
| 3436 |
msgstr ""
|
| 3437 |
|
| 3438 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:530, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3439 |
msgid "Somalia"
|
| 3440 |
msgstr ""
|
| 3441 |
|
| 3442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:531, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3443 |
msgid "South Africa"
|
| 3444 |
msgstr ""
|
| 3445 |
|
| 3446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:532, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3447 |
msgid "South Georgia and the South Sandwich Islands"
|
| 3448 |
msgstr ""
|
| 3449 |
|
| 3450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:533
|
| 3451 |
msgid "South Korea"
|
| 3452 |
msgstr ""
|
| 3453 |
|
| 3454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:534, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3455 |
msgid "South Sudan"
|
| 3456 |
msgstr ""
|
| 3457 |
|
| 3458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:535, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3459 |
msgid "Spain"
|
| 3460 |
msgstr ""
|
| 3461 |
|
| 3462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:536, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3463 |
msgid "Sri Lanka"
|
| 3464 |
msgstr ""
|
| 3465 |
|
| 3466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:537, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3467 |
msgid "Sudan"
|
| 3468 |
msgstr ""
|
| 3469 |
|
| 3470 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:538, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3471 |
msgid "Suriname"
|
| 3472 |
msgstr ""
|
| 3473 |
|
| 3474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:539, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3475 |
msgid "Svalbard and Jan Mayen"
|
| 3476 |
msgstr ""
|
| 3477 |
|
| 3478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:540, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3479 |
msgid "Swaziland"
|
| 3480 |
msgstr ""
|
| 3481 |
|
| 3482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:541, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3483 |
msgid "Sweden"
|
| 3484 |
msgstr ""
|
| 3485 |
|
| 3486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:542, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3487 |
msgid "Switzerland"
|
| 3488 |
msgstr ""
|
| 3489 |
|
| 3490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:543
|
| 3491 |
msgid "Syria"
|
| 3492 |
msgstr ""
|
| 3493 |
|
| 3494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:544
|
| 3495 |
msgid "Taiwan"
|
| 3496 |
msgstr ""
|
| 3497 |
|
| 3498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:545, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3499 |
msgid "Tajikistan"
|
| 3500 |
msgstr ""
|
| 3501 |
|
| 3502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:546
|
| 3503 |
msgid "Tanzania"
|
| 3504 |
msgstr ""
|
| 3505 |
|
| 3506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:547, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3507 |
msgid "Thailand"
|
| 3508 |
msgstr ""
|
| 3509 |
|
| 3510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:548, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3511 |
msgid "Togo"
|
| 3512 |
msgstr ""
|
| 3513 |
|
| 3514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:549, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3515 |
msgid "Tokelau"
|
| 3516 |
msgstr ""
|
| 3517 |
|
| 3518 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:550, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3519 |
msgid "Tonga"
|
| 3520 |
msgstr ""
|
| 3521 |
|
| 3522 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:551, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3523 |
msgid "Trinidad and Tobago"
|
| 3524 |
msgstr ""
|
| 3525 |
|
| 3526 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:552, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3527 |
msgid "Tunisia"
|
| 3528 |
msgstr ""
|
| 3529 |
|
| 3530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:553, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3531 |
msgid "Turkey"
|
| 3532 |
msgstr ""
|
| 3533 |
|
| 3534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:554, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3535 |
msgid "Turkmenistan"
|
| 3536 |
msgstr ""
|
| 3537 |
|
| 3538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:555, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3539 |
msgid "Turks and Caicos Islands"
|
| 3540 |
msgstr ""
|
| 3541 |
|
| 3542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:556, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3543 |
msgid "Tuvalu"
|
| 3544 |
msgstr ""
|
| 3545 |
|
| 3546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:557
|
| 3547 |
msgid "U.S. Virgin Islands"
|
| 3548 |
msgstr ""
|
| 3549 |
|
| 3550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:558, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3551 |
msgid "Uganda"
|
| 3552 |
msgstr ""
|
| 3553 |
|
| 3554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:559, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3555 |
msgid "Ukraine"
|
| 3556 |
msgstr ""
|
| 3557 |
|
| 3558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:560, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3559 |
msgid "United Arab Emirates"
|
| 3560 |
msgstr ""
|
| 3561 |
|
| 3562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:561, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3563 |
msgid "United Kingdom"
|
| 3564 |
msgstr ""
|
| 3565 |
|
| 3566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:562, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3567 |
msgid "United States"
|
| 3568 |
msgstr ""
|
| 3569 |
|
| 3570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:563, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3571 |
msgid "United States Minor Outlying Islands"
|
| 3572 |
msgstr ""
|
| 3573 |
|
| 3574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:564, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3575 |
msgid "Uruguay"
|
| 3576 |
msgstr ""
|
| 3577 |
|
| 3578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:565, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3579 |
msgid "Uzbekistan"
|
| 3580 |
msgstr ""
|
| 3581 |
|
| 3582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:566, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3583 |
msgid "Vanuatu"
|
| 3584 |
msgstr ""
|
| 3585 |
|
| 3586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:567
|
| 3587 |
msgid "Vatican"
|
| 3588 |
msgstr ""
|
| 3589 |
|
| 3590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:568
|
| 3591 |
msgid "Venezuela"
|
| 3592 |
msgstr ""
|
| 3593 |
|
| 3594 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:569
|
| 3595 |
msgid "Vietnam"
|
| 3596 |
msgstr ""
|
| 3597 |
|
| 3598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:570, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3599 |
msgid "Wallis and Futuna"
|
| 3600 |
msgstr ""
|
| 3601 |
|
| 3602 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:571, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3603 |
msgid "Western Sahara"
|
| 3604 |
msgstr ""
|
| 3605 |
|
| 3606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:572, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3607 |
msgid "Yemen"
|
| 3608 |
msgstr ""
|
| 3609 |
|
| 3610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:573, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3611 |
msgid "Zambia"
|
| 3612 |
msgstr ""
|
| 3613 |
|
| 3614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:574, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3615 |
msgid "Zimbabwe"
|
| 3616 |
msgstr ""
|
| 3617 |
|
| 3618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:607
|
| 3619 |
msgid "Albania Lek"
|
| 3620 |
msgstr ""
|
| 3621 |
|
| 3622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:608
|
| 3623 |
msgid "Afghanistan Afghani"
|
| 3624 |
msgstr ""
|
| 3625 |
|
| 3626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:609
|
| 3627 |
msgid "Argentina Peso"
|
| 3628 |
msgstr ""
|
| 3629 |
|
| 3630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:611
|
| 3631 |
msgid "Australia Dollar"
|
| 3632 |
msgstr ""
|
| 3633 |
|
| 3634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:612
|
| 3635 |
msgid "Azerbaijan New Manat"
|
| 3636 |
msgstr ""
|
| 3637 |
|
| 3638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:613
|
| 3639 |
msgid "Bahamas Dollar"
|
| 3640 |
msgstr ""
|
| 3641 |
|
| 3642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:614
|
| 3643 |
msgid "Barbados Dollar"
|
| 3644 |
msgstr ""
|
| 3645 |
|
| 3646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:615
|
| 3647 |
msgid "Bangladeshi taka"
|
| 3648 |
msgstr ""
|
| 3649 |
|
| 3650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:616
|
| 3651 |
msgid "Belarus Ruble"
|
| 3652 |
msgstr ""
|
| 3653 |
|
| 3654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:617
|
| 3655 |
msgid "Belize Dollar"
|
| 3656 |
msgstr ""
|
| 3657 |
|
| 3658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:618
|
| 3659 |
msgid "Bermuda Dollar"
|
| 3660 |
msgstr ""
|
| 3661 |
|
| 3662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:619
|
| 3663 |
msgid "Bolivia Boliviano"
|
| 3664 |
msgstr ""
|
| 3665 |
|
| 3666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:620
|
| 3667 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
| 3668 |
msgstr ""
|
| 3669 |
|
| 3670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:621
|
| 3671 |
msgid "Botswana Pula"
|
| 3672 |
msgstr ""
|
| 3673 |
|
| 3674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:622
|
| 3675 |
msgid "Bulgaria Lev"
|
| 3676 |
msgstr ""
|
| 3677 |
|
| 3678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:623
|
| 3679 |
msgid "Brazil Real"
|
| 3680 |
msgstr ""
|
| 3681 |
|
| 3682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:624
|
| 3683 |
msgid "Brunei Darussalam Dollar"
|
| 3684 |
msgstr ""
|
| 3685 |
|
| 3686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:625
|
| 3687 |
msgid "Cambodia Riel"
|
| 3688 |
msgstr ""
|
| 3689 |
|
| 3690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:626
|
| 3691 |
msgid "Canada Dollar"
|
| 3692 |
msgstr ""
|
| 3693 |
|
| 3694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:627
|
| 3695 |
msgid "Cayman Islands Dollar"
|
| 3696 |
msgstr ""
|
| 3697 |
|
| 3698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:628
|
| 3699 |
msgid "Chile Peso"
|
| 3700 |
msgstr ""
|
| 3701 |
|
| 3702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:629
|
| 3703 |
msgid "China Yuan Renminbi"
|
| 3704 |
msgstr ""
|
| 3705 |
|
| 3706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:630
|
| 3707 |
msgid "Colombia Peso"
|
| 3708 |
msgstr ""
|
| 3709 |
|
| 3710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:631
|
| 3711 |
msgid "Costa Rica Colon"
|
| 3712 |
msgstr ""
|
| 3713 |
|
| 3714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:632
|
| 3715 |
msgid "Croatia Kuna"
|
| 3716 |
msgstr ""
|
| 3717 |
|
| 3718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:633
|
| 3719 |
msgid "Cuba Peso"
|
| 3720 |
msgstr ""
|
| 3721 |
|
| 3722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:634
|
| 3723 |
msgid "Czech Republic Koruna"
|
| 3724 |
msgstr ""
|
| 3725 |
|
| 3726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:635
|
| 3727 |
msgid "Denmark Krone"
|
| 3728 |
msgstr ""
|
| 3729 |
|
| 3730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:636
|
| 3731 |
msgid "Dominican Republic Peso"
|
| 3732 |
msgstr ""
|
| 3733 |
|
| 3734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:637
|
| 3735 |
msgid "East Caribbean Dollar"
|
| 3736 |
msgstr ""
|
| 3737 |
|
| 3738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:638
|
| 3739 |
msgid "Egypt Pound"
|
| 3740 |
msgstr ""
|
| 3741 |
|
| 3742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:639
|
| 3743 |
msgid "El Salvador Colon"
|
| 3744 |
msgstr ""
|
| 3745 |
|
| 3746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:640
|
| 3747 |
msgid "Estonia Kroon"
|
| 3748 |
msgstr ""
|
| 3749 |
|
| 3750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:641
|
| 3751 |
msgid "Euro"
|
| 3752 |
msgstr ""
|
| 3753 |
|
| 3754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:642
|
| 3755 |
msgid "Falkland Islands (Malvinas) Pound"
|
| 3756 |
msgstr ""
|
| 3757 |
|
| 3758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:643
|
| 3759 |
msgid "Fiji Dollar"
|
| 3760 |
msgstr ""
|
| 3761 |
|
| 3762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:644
|
| 3763 |
msgid "Ghana Cedis"
|
| 3764 |
msgstr ""
|
| 3765 |
|
| 3766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:645
|
| 3767 |
msgid "Gibraltar Pound"
|
| 3768 |
msgstr ""
|
| 3769 |
|
| 3770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:646
|
| 3771 |
msgid "Guatemala Quetzal"
|
| 3772 |
msgstr ""
|
| 3773 |
|
| 3774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:647
|
| 3775 |
msgid "Guernsey Pound"
|
| 3776 |
msgstr ""
|
| 3777 |
|
| 3778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:648
|
| 3779 |
msgid "Guyana Dollar"
|
| 3780 |
msgstr ""
|
| 3781 |
|
| 3782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:649
|
| 3783 |
msgid "Honduras Lempira"
|
| 3784 |
msgstr ""
|
| 3785 |
|
| 3786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:650
|
| 3787 |
msgid "Hong Kong Dollar"
|
| 3788 |
msgstr ""
|
| 3789 |
|
| 3790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:651
|
| 3791 |
msgid "Hungary Forint"
|
| 3792 |
msgstr ""
|
| 3793 |
|
| 3794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:652
|
| 3795 |
msgid "Iceland Krona"
|
| 3796 |
msgstr ""
|
| 3797 |
|
| 3798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:653
|
| 3799 |
msgid "India Rupee"
|
| 3800 |
msgstr ""
|
| 3801 |
|
| 3802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:654
|
| 3803 |
msgid "Indonesia Rupiah"
|
| 3804 |
msgstr ""
|
| 3805 |
|
| 3806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:655
|
| 3807 |
msgid "Iran Rial"
|
| 3808 |
msgstr ""
|
| 3809 |
|
| 3810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:656
|
| 3811 |
msgid "Isle of Man Pound"
|
| 3812 |
msgstr ""
|
| 3813 |
|
| 3814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:657
|
| 3815 |
msgid "Israel Shekel"
|
| 3816 |
msgstr ""
|
| 3817 |
|
| 3818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:658
|
| 3819 |
msgid "Jamaica Dollar"
|
| 3820 |
msgstr ""
|
| 3821 |
|
| 3822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:659
|
| 3823 |
msgid "Japan Yen"
|
| 3824 |
msgstr ""
|
| 3825 |
|
| 3826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:660
|
| 3827 |
msgid "Jersey Pound"
|
| 3828 |
msgstr ""
|
| 3829 |
|
| 3830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:661
|
| 3831 |
msgid "Kazakhstan Tenge"
|
| 3832 |
msgstr ""
|
| 3833 |
|
| 3834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:662
|
| 3835 |
msgid "Korea (North) Won"
|
| 3836 |
msgstr ""
|
| 3837 |
|
| 3838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:663
|
| 3839 |
msgid "Korea (South) Won"
|
| 3840 |
msgstr ""
|
| 3841 |
|
| 3842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:664
|
| 3843 |
msgid "Kyrgyzstan Som"
|
| 3844 |
msgstr ""
|
| 3845 |
|
| 3846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:665
|
| 3847 |
msgid "Laos Kip"
|
| 3848 |
msgstr ""
|
| 3849 |
|
| 3850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:666
|
| 3851 |
msgid "Latvia Lat"
|
| 3852 |
msgstr ""
|
| 3853 |
|
| 3854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:667
|
| 3855 |
msgid "Lebanon Pound"
|
| 3856 |
msgstr ""
|
| 3857 |
|
| 3858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:668
|
| 3859 |
msgid "Liberia Dollar"
|
| 3860 |
msgstr ""
|
| 3861 |
|
| 3862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:669
|
| 3863 |
msgid "Lithuania Litas"
|
| 3864 |
msgstr ""
|
| 3865 |
|
| 3866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:670
|
| 3867 |
msgid "Macedonia Denar"
|
| 3868 |
msgstr ""
|
| 3869 |
|
| 3870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:671
|
| 3871 |
msgid "Malaysia Ringgit"
|
| 3872 |
msgstr ""
|
| 3873 |
|
| 3874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:672
|
| 3875 |
msgid "Mauritius Rupee"
|
| 3876 |
msgstr ""
|
| 3877 |
|
| 3878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:673
|
| 3879 |
msgid "Mexico Peso"
|
| 3880 |
msgstr ""
|
| 3881 |
|
| 3882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:674
|
| 3883 |
msgid "Mongolia Tughrik"
|
| 3884 |
msgstr ""
|
| 3885 |
|
| 3886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:675
|
| 3887 |
msgid "Mozambique Metical"
|
| 3888 |
msgstr ""
|
| 3889 |
|
| 3890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:676
|
| 3891 |
msgid "Namibia Dollar"
|
| 3892 |
msgstr ""
|
| 3893 |
|
| 3894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:677
|
| 3895 |
msgid "Nepal Rupee"
|
| 3896 |
msgstr ""
|
| 3897 |
|
| 3898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:678
|
| 3899 |
msgid "Netherlands Antilles Guilder"
|
| 3900 |
msgstr ""
|
| 3901 |
|
| 3902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:679
|
| 3903 |
msgid "New Zealand Dollar"
|
| 3904 |
msgstr ""
|
| 3905 |
|
| 3906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:680
|
| 3907 |
msgid "Nicaragua Cordoba"
|
| 3908 |
msgstr ""
|
| 3909 |
|
| 3910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:681
|
| 3911 |
msgid "Nigeria Naira"
|
| 3912 |
msgstr ""
|
| 3913 |
|
| 3914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:682
|
| 3915 |
msgid "Norway Krone"
|
| 3916 |
msgstr ""
|
| 3917 |
|
| 3918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:683
|
| 3919 |
msgid "Oman Rial"
|
| 3920 |
msgstr ""
|
| 3921 |
|
| 3922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:684
|
| 3923 |
msgid "Pakistan Rupee"
|
| 3924 |
msgstr ""
|
| 3925 |
|
| 3926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:685
|
| 3927 |
msgid "Panama Balboa"
|
| 3928 |
msgstr ""
|
| 3929 |
|
| 3930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:686
|
| 3931 |
msgid "Paraguay Guarani"
|
| 3932 |
msgstr ""
|
| 3933 |
|
| 3934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:687
|
| 3935 |
msgid "Peru Nuevo Sol"
|
| 3936 |
msgstr ""
|
| 3937 |
|
| 3938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:688
|
| 3939 |
msgid "Philippines Peso"
|
| 3940 |
msgstr ""
|
| 3941 |
|
| 3942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:689
|
| 3943 |
msgid "Poland Zloty"
|
| 3944 |
msgstr ""
|
| 3945 |
|
| 3946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:690
|
| 3947 |
msgid "Qatar Riyal"
|
| 3948 |
msgstr ""
|
| 3949 |
|
| 3950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:691
|
| 3951 |
msgid "Romania New Leu"
|
| 3952 |
msgstr ""
|
| 3953 |
|
| 3954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:692
|
| 3955 |
msgid "Russia Ruble"
|
| 3956 |
msgstr ""
|
| 3957 |
|
| 3958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:693
|
| 3959 |
msgid "Saint Helena Pound"
|
| 3960 |
msgstr ""
|
| 3961 |
|
| 3962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:694
|
| 3963 |
msgid "Saudi Arabia Riyal"
|
| 3964 |
msgstr ""
|
| 3965 |
|
| 3966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:695
|
| 3967 |
msgid "Serbia Dinar"
|
| 3968 |
msgstr ""
|
| 3969 |
|
| 3970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:696
|
| 3971 |
msgid "Seychelles Rupee"
|
| 3972 |
msgstr ""
|
| 3973 |
|
| 3974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:697
|
| 3975 |
msgid "Singapore Dollar"
|
| 3976 |
msgstr ""
|
| 3977 |
|
| 3978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:698
|
| 3979 |
msgid "Solomon Islands Dollar"
|
| 3980 |
msgstr ""
|
| 3981 |
|
| 3982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:699
|
| 3983 |
msgid "Somalia Shilling"
|
| 3984 |
msgstr ""
|
| 3985 |
|
| 3986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:700
|
| 3987 |
msgid "South Africa Rand"
|
| 3988 |
msgstr ""
|
| 3989 |
|
| 3990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:701
|
| 3991 |
msgid "Sri Lanka Rupee"
|
| 3992 |
msgstr ""
|
| 3993 |
|
| 3994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:702
|
| 3995 |
msgid "Sweden Krona"
|
| 3996 |
msgstr ""
|
| 3997 |
|
| 3998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:703
|
| 3999 |
msgid "Switzerland Franc"
|
| 4000 |
msgstr ""
|
| 4001 |
|
| 4002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:704
|
| 4003 |
msgid "Suriname Dollar"
|
| 4004 |
msgstr ""
|
| 4005 |
|
| 4006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:705
|
| 4007 |
msgid "Syria Pound"
|
| 4008 |
msgstr ""
|
| 4009 |
|
| 4010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:706
|
| 4011 |
msgid "Taiwan New Dollar"
|
| 4012 |
msgstr ""
|
| 4013 |
|
| 4014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:707
|
| 4015 |
msgid "Thailand Baht"
|
| 4016 |
msgstr ""
|
| 4017 |
|
| 4018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:708
|
| 4019 |
msgid "Trinidad and Tobago Dollar"
|
| 4020 |
msgstr ""
|
| 4021 |
|
| 4022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:709, ../profile-builder-2.0/admin/manage-fields.php:710
|
| 4023 |
msgid "Turkey Lira"
|
| 4024 |
msgstr ""
|
| 4025 |
|
| 4026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:711
|
| 4027 |
msgid "Tuvalu Dollar"
|
| 4028 |
msgstr ""
|
| 4029 |
|
| 4030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:712
|
| 4031 |
msgid "Ukraine Hryvna"
|
| 4032 |
msgstr ""
|
| 4033 |
|
| 4034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:713
|
| 4035 |
msgid "United Kingdom Pound"
|
| 4036 |
msgstr ""
|
| 4037 |
|
| 4038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:714
|
| 4039 |
msgid "Uganda Shilling"
|
| 4040 |
msgstr ""
|
| 4041 |
|
| 4042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:715
|
| 4043 |
msgid "US Dollar"
|
| 4044 |
msgstr ""
|
| 4045 |
|
| 4046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:716
|
| 4047 |
msgid "Uruguay Peso"
|
| 4048 |
msgstr ""
|
| 4049 |
|
| 4050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:717
|
| 4051 |
msgid "Uzbekistan Som"
|
| 4052 |
msgstr ""
|
| 4053 |
|
| 4054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:718
|
| 4055 |
msgid "Venezuela Bolivar"
|
| 4056 |
msgstr ""
|
| 4057 |
|
| 4058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:719
|
| 4059 |
msgid "Viet Nam Dong"
|
| 4060 |
msgstr ""
|
| 4061 |
|
| 4062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:720
|
| 4063 |
msgid "Yemen Rial"
|
| 4064 |
msgstr ""
|
| 4065 |
|
| 4066 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:721
|
| 4067 |
msgid "Zimbabwe Dollar"
|
| 4068 |
msgstr ""
|
| 4069 |
|
| 4070 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1023, ../profile-builder-2.0/admin/manage-fields.php:1180
|
| 4071 |
msgid ""
|
| 4072 |
"You must select a field\n"
|
| 4073 |
""
|
| 4074 |
msgstr ""
|
| 4075 |
|
| 4076 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1033
|
| 4077 |
msgid ""
|
| 4078 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
| 4079 |
""
|
| 4080 |
msgstr ""
|
| 4081 |
|
| 4082 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1044
|
| 4083 |
msgid ""
|
| 4084 |
"The entered avatar size is not between 20 and 200\n"
|
| 4085 |
""
|
| 4086 |
msgstr ""
|
| 4087 |
|
| 4088 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1047
|
| 4089 |
msgid ""
|
| 4090 |
"The entered avatar size is not numerical\n"
|
| 4091 |
""
|
| 4092 |
msgstr ""
|
| 4093 |
|
| 4094 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1055
|
| 4095 |
msgid ""
|
| 4096 |
"The entered row number is not numerical\n"
|
| 4097 |
""
|
| 4098 |
msgstr ""
|
| 4099 |
|
| 4100 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1058
|
| 4101 |
msgid ""
|
| 4102 |
"You must enter a value for the row number\n"
|
| 4103 |
""
|
| 4104 |
msgstr ""
|
| 4105 |
|
| 4106 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1066
|
| 4107 |
msgid ""
|
| 4108 |
"You must enter the site key\n"
|
| 4109 |
""
|
| 4110 |
msgstr ""
|
| 4111 |
|
| 4112 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1068
|
| 4113 |
msgid ""
|
| 4114 |
"You must enter the secret key\n"
|
| 4115 |
""
|
| 4116 |
msgstr ""
|
| 4117 |
|
| 4118 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1079
|
| 4119 |
msgid ""
|
| 4120 |
"The entered value for the Datepicker is not a valid date-format\n"
|
| 4121 |
""
|
| 4122 |
msgstr ""
|
| 4123 |
|
| 4124 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1082
|
| 4125 |
msgid ""
|
| 4126 |
"You must enter a value for the date-format\n"
|
| 4127 |
""
|
| 4128 |
msgstr ""
|
| 4129 |
|
| 4130 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1098
|
| 4131 |
msgid ""
|
| 4132 |
"The meta-name cannot be empty\n"
|
| 4133 |
""
|
| 4134 |
msgstr ""
|
| 4135 |
|
| 4136 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1110, ../profile-builder-2.0/admin/manage-fields.php:1118, ../profile-builder-2.0/admin/manage-fields.php:1129
|
| 4137 |
msgid ""
|
| 4138 |
"That meta-name is already in use\n"
|
| 4139 |
""
|
| 4140 |
msgstr ""
|
| 4141 |
|
| 4142 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1140
|
| 4143 |
msgid ""
|
| 4144 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
| 4145 |
""
|
| 4146 |
msgstr ""
|
| 4147 |
|
| 4148 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1160
|
| 4149 |
msgid ""
|
| 4150 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
| 4151 |
""
|
| 4152 |
msgstr ""
|
| 4153 |
|
| 4154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1164
|
| 4155 |
msgid ""
|
| 4156 |
"The following option did not coincide with the ones in the options list: %s\n"
|
| 4157 |
""
|
| 4158 |
msgstr ""
|
| 4159 |
|
| 4160 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1171
|
| 4161 |
msgid ""
|
| 4162 |
"Please select at least one user role\n"
|
| 4163 |
""
|
| 4164 |
msgstr ""
|
| 4165 |
|
| 4166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1187
|
| 4167 |
msgid ""
|
| 4168 |
"That field is already added in this form\n"
|
| 4169 |
""
|
| 4170 |
msgstr ""
|
| 4171 |
|
| 4172 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1238
|
| 4173 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
| 4174 |
msgstr ""
|
| 4175 |
|
| 4176 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1253
|
| 4177 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
| 4178 |
msgstr ""
|
| 4179 |
|
| 4180 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1262
|
| 4181 |
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."
|
| 4182 |
msgstr ""
|
| 4183 |
|
| 4184 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1264
|
| 4185 |
+
msgid "With Profile Builder Pro you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
| 4186 |
msgstr ""
|
| 4187 |
|
| 4188 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1361
|
| 4189 |
msgid "Search Location"
|
| 4190 |
msgstr ""
|
| 4191 |
|
| 4333 |
msgid "I allow the website to collect and store the data I submit through this form."
|
| 4334 |
msgstr ""
|
| 4335 |
|
| 4336 |
+
#: ../profile-builder-2.0/features/functions.php:545
|
| 4337 |
msgid "Strength indicator"
|
| 4338 |
msgstr ""
|
| 4339 |
|
| 4340 |
+
#: ../profile-builder-2.0/features/functions.php:571, ../profile-builder-2.0/features/functions.php:595
|
| 4341 |
msgid "Very Weak"
|
| 4342 |
msgstr ""
|
| 4343 |
|
| 4344 |
+
#: ../profile-builder-2.0/features/functions.php:585
|
| 4345 |
msgid "Minimum length of %d characters."
|
| 4346 |
msgstr ""
|
| 4347 |
|
| 4348 |
+
#: ../profile-builder-2.0/features/functions.php:596
|
| 4349 |
msgid "The password must have a minimum strength of %s."
|
| 4350 |
msgstr ""
|
| 4351 |
|
| 4352 |
+
#: ../profile-builder-2.0/features/functions.php:673
|
| 4353 |
msgid "This field is required"
|
| 4354 |
msgstr ""
|
| 4355 |
|
| 4356 |
+
#: ../profile-builder-2.0/features/functions.php:711, ../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
|
| 4357 |
msgid "Please enter a (valid) reCAPTCHA value"
|
| 4358 |
msgstr ""
|
| 4359 |
|
| 4360 |
+
#: ../profile-builder-2.0/features/functions.php:718
|
| 4361 |
msgid "Incorrect phone number"
|
| 4362 |
msgstr ""
|
| 4363 |
|
| 4364 |
+
#: ../profile-builder-2.0/features/functions.php:730, ../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
|
| 4365 |
msgid "Save Changes"
|
| 4366 |
msgstr ""
|
| 4367 |
|
| 4368 |
+
#: ../profile-builder-2.0/features/functions.php:758, ../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
|
| 4369 |
msgid "Content"
|
| 4370 |
msgstr ""
|
| 4371 |
|
| 4372 |
+
#: ../profile-builder-2.0/features/functions.php:769
|
| 4373 |
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"
|
| 4374 |
msgstr ""
|
| 4375 |
|
| 4376 |
+
#: ../profile-builder-2.0/features/functions.php:773
|
| 4377 |
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"
|
| 4378 |
msgstr ""
|
| 4379 |
|
| 4380 |
+
#: ../profile-builder-2.0/features/functions.php:938
|
| 4381 |
msgid "<br><br>Also, you will be able to visit your site at "
|
| 4382 |
msgstr ""
|
| 4383 |
|
| 4384 |
+
#: ../profile-builder-2.0/features/functions.php:951
|
| 4385 |
msgid "<br><br>You can visit your site at "
|
| 4386 |
msgstr ""
|
| 4387 |
|
| 4388 |
+
#: ../profile-builder-2.0/features/functions.php:1037
|
| 4389 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
| 4390 |
msgstr ""
|
| 4391 |
|
