Version Description
- Added GDPR Delete Button as a field
- Export Personal Data now exports Profile Builder fields
- GDPR improvements
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.0 to 3.0.1
- admin/manage-fields.php +2 -1
- assets/css/style-front-end.css +4 -0
- assets/js/jquery-manage-fields-live-change.js +8 -0
- features/functions.php +100 -0
- front-end/default-fields/default-fields.php +1 -0
- front-end/default-fields/gdpr-delete/gdpr-delete.js +14 -0
- front-end/default-fields/gdpr-delete/gdpr-delete.php +40 -0
- front-end/default-fields/gdpr/gdpr.php +2 -0
- index.php +2 -2
- readme.txt +16 -10
- translation/profile-builder.catalog.php +13 -0
- translation/profile-builder.pot +719 -667
admin/manage-fields.php
CHANGED
@@ -64,6 +64,7 @@ function wppb_populate_manage_fields(){
|
|
64 |
'label' => __('Other'),
|
65 |
'options' => array(
|
66 |
'GDPR Checkbox', // since 2.8.2
|
|
|
67 |
),
|
68 |
),
|
69 |
),
|
@@ -1165,7 +1166,7 @@ function wppb_check_field_on_edit_add( $message, $fields, $required_fields, $met
|
|
1165 |
$unique_meta_name_list = array( 'first_name', 'last_name', 'nickname', 'description' );
|
1166 |
|
1167 |
//check to see if meta-name is empty
|
1168 |
-
$skip_empty_check_for_fields = array( 'Heading', 'Select (User Role)', 'reCAPTCHA', 'HTML' );
|
1169 |
|
1170 |
if( !in_array( $posted_values['field'], $skip_empty_check_for_fields ) && empty( $posted_values['meta-name'] ) ) {
|
1171 |
$message .= __( "The meta-name cannot be empty\n", 'profile-builder' );
|
64 |
'label' => __('Other'),
|
65 |
'options' => array(
|
66 |
'GDPR Checkbox', // since 2.8.2
|
67 |
+
'GDPR Delete Button', // since 3.0.1
|
68 |
),
|
69 |
),
|
70 |
),
|
1166 |
$unique_meta_name_list = array( 'first_name', 'last_name', 'nickname', 'description' );
|
1167 |
|
1168 |
//check to see if meta-name is empty
|
1169 |
+
$skip_empty_check_for_fields = array( 'Heading', 'Select (User Role)', 'reCAPTCHA', 'HTML', 'GDPR Delete Button' );
|
1170 |
|
1171 |
if( !in_array( $posted_values['field'], $skip_empty_check_for_fields ) && empty( $posted_values['meta-name'] ) ) {
|
1172 |
$message .= __( "The meta-name cannot be empty\n", 'profile-builder' );
|
assets/css/style-front-end.css
CHANGED
@@ -128,6 +128,10 @@
|
|
128 |
margin-bottom: 0;
|
129 |
}
|
130 |
|
|
|
|
|
|
|
|
|
131 |
/*--------------------------------------------------------------
|
132 |
3.0 Alignments
|
133 |
--------------------------------------------------------------*/
|
128 |
margin-bottom: 0;
|
129 |
}
|
130 |
|
131 |
+
.wppb-gdpr-delete-button .wppb-delete-account {
|
132 |
+
width: 110px;
|
133 |
+
}
|
134 |
+
|
135 |
/*--------------------------------------------------------------
|
136 |
3.0 Alignments
|
137 |
--------------------------------------------------------------*/
|
assets/js/jquery-manage-fields-live-change.js
CHANGED
@@ -215,6 +215,14 @@ var fields = {
|
|
215 |
true
|
216 |
]
|
217 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
|
219 |
'Heading': { 'show_rows' : [
|
220 |
'.row-field-title',
|
215 |
true
|
216 |
]
|
217 |
},
|
218 |
+
'GDPR Delete Button': { 'show_rows' : [
|
219 |
+
'.row-field-title',
|
220 |
+
'.row-description',
|
221 |
+
],
|
222 |
+
'properties': {
|
223 |
+
'meta_name_value' : ''
|
224 |
+
}
|
225 |
+
},
|
226 |
|
227 |
'Heading': { 'show_rows' : [
|
228 |
'.row-field-title',
|
features/functions.php
CHANGED
@@ -1251,4 +1251,104 @@ function wppb_hide_menus( $menu ){
|
|
1251 |
|
1252 |
/**
|
1253 |
* Functionality for Private Website end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1254 |
*/
|
1251 |
|
1252 |
/**
|
1253 |
* Functionality for Private Website end
|
1254 |
+
*/
|
1255 |
+
|
1256 |
+
/**
|
1257 |
+
* Functionality GDPR compliance start
|
1258 |
+
*/
|
1259 |
+
|
1260 |
+
//hook into the wp export compatibility
|
1261 |
+
add_filter( 'wp_privacy_personal_data_exporters', 'wppb_register_profile_builder_wp_exporter', 10 );
|
1262 |
+
function wppb_register_profile_builder_wp_exporter( $exporters ) {
|
1263 |
+
$exporters['profile-builder'] = array(
|
1264 |
+
'exporter_friendly_name' => __( 'Profile Builder' ),
|
1265 |
+
'callback' => 'wppb_profile_builder_wp_exporter',
|
1266 |
+
);
|
1267 |
+
return $exporters;
|
1268 |
+
}
|
1269 |
+
/* function to add aour user meta to wp exporter */
|
1270 |
+
function wppb_profile_builder_wp_exporter( $email_address, $page = 1 ) {
|
1271 |
+
|
1272 |
+
$export_items = array();
|
1273 |
+
|
1274 |
+
$form_fields = get_option( 'wppb_manage_fields' );
|
1275 |
+
|
1276 |
+
if( !empty( $form_fields ) ) {
|
1277 |
+
$user = get_user_by( 'email', $email_address );
|
1278 |
+
if( $user ) {
|
1279 |
+
|
1280 |
+
$item_id = "user-meta-{$user->ID}";
|
1281 |
+
$group_id = 'user-meta';
|
1282 |
+
$group_label = __('User Meta');
|
1283 |
+
$data = array();
|
1284 |
+
|
1285 |
+
$all_meta_for_user = get_user_meta( $user->ID );
|
1286 |
+
if( !empty( $all_meta_for_user ) ) {
|
1287 |
+
foreach ($form_fields as $form_field) {
|
1288 |
+
|
1289 |
+
if (!empty($form_field['meta-name']) && strpos($form_field['field'], 'Default') === false) {
|
1290 |
+
$user_meta_value = $all_meta_for_user[$form_field['meta-name']][0];
|
1291 |
+
if( !empty( $user_meta_value ) ){
|
1292 |
+
|
1293 |
+
|
1294 |
+
$data[] = array(
|
1295 |
+
'name' => $form_field['field-title'],
|
1296 |
+
'value' => $user_meta_value
|
1297 |
+
);
|
1298 |
+
}
|
1299 |
+
}
|
1300 |
+
}
|
1301 |
+
|
1302 |
+
$export_items[] = array(
|
1303 |
+
'group_id' => $group_id,
|
1304 |
+
'group_label' => $group_label,
|
1305 |
+
'item_id' => $item_id,
|
1306 |
+
'data' => $data,
|
1307 |
+
);
|
1308 |
+
|
1309 |
+
}
|
1310 |
+
}
|
1311 |
+
}
|
1312 |
+
|
1313 |
+
|
1314 |
+
return array(
|
1315 |
+
'data' => $export_items,
|
1316 |
+
'done' => true,
|
1317 |
+
);
|
1318 |
+
}
|
1319 |
+
|
1320 |
+
/**
|
1321 |
+
* Hook to delete a user through the GDPR Delete button
|
1322 |
+
*/
|
1323 |
+
add_action( 'template_redirect', 'wppb_gdpr_delete_user') ;
|
1324 |
+
function wppb_gdpr_delete_user() {
|
1325 |
+
|
1326 |
+
if( isset( $_GET['wppb_user'] ) && ! empty( $_GET['wppb_user'] ) ) {
|
1327 |
+
|
1328 |
+
$edited_user_id = get_current_user_id();
|
1329 |
+
if ( ( !is_multisite() && current_user_can('edit_users') ) || ( is_multisite() && current_user_can('manage_network') ) ) {
|
1330 |
+
$edited_user_id = absint($_GET['wppb_user']);
|
1331 |
+
}
|
1332 |
+
|
1333 |
+
if (isset($_REQUEST['wppb_action']) && $_REQUEST['wppb_action'] == 'wppb_delete_user' && wp_verify_nonce($_REQUEST['wppb_nonce'], 'wppb-user-own-account-deletion') && isset($_REQUEST['wppb_user']) && $edited_user_id == $_REQUEST['wppb_user']) {
|
1334 |
+
require_once(ABSPATH . 'wp-admin/includes/user.php');
|
1335 |
+
$user = new WP_User( absint( $_REQUEST['wppb_user'] ) );
|
1336 |
+
|
1337 |
+
if (!empty($user->roles)) {
|
1338 |
+
foreach ($user->roles as $role) {
|
1339 |
+
if ($role != 'administrator') {
|
1340 |
+
wp_delete_user( absint( $_REQUEST['wppb_user'] ) );
|
1341 |
+
}
|
1342 |
+
}
|
1343 |
+
}
|
1344 |
+
|
1345 |
+
$args = array('wppb_user', 'wppb_action', 'wppb_nonce');
|
1346 |
+
wp_redirect(remove_query_arg($args));
|
1347 |
+
}
|
1348 |
+
}
|
1349 |
+
}
|
1350 |
+
|
1351 |
+
|
1352 |
+
/**
|
1353 |
+
* Functionality GDPR compliance end
|
1354 |
*/
|
front-end/default-fields/default-fields.php
CHANGED
@@ -44,5 +44,6 @@ function wppb_include_default_fields_files() {
|
|
44 |
|
45 |
/* added recaptcha and user role field since version 2.8.2 */
|
46 |
include_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/gdpr/gdpr.php' );
|
|
|
47 |
}
|
48 |
wppb_include_default_fields_files();
|
44 |
|
45 |
/* added recaptcha and user role field since version 2.8.2 */
|
46 |
include_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/gdpr/gdpr.php' );
|
47 |
+
include_once( WPPB_PLUGIN_DIR.'/front-end/default-fields/gdpr-delete/gdpr-delete.php' );
|
48 |
}
|
49 |
wppb_include_default_fields_files();
|
front-end/default-fields/gdpr-delete/gdpr-delete.js
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(document).ready(function() {
|
2 |
+
jQuery(".wppb-delete-account").on("click", function (e) {
|
3 |
+
e.preventDefault();
|
4 |
+
|
5 |
+
var wppbDeleteUser = prompt(wppbGdpr.delete_text);
|
6 |
+
if( wppbDeleteUser === "DELETE" ) {
|
7 |
+
window.location.replace(wppbGdpr.delete_url);
|
8 |
+
}
|
9 |
+
else{
|
10 |
+
alert( wppbGdpr.delete_error_text );
|
11 |
+
}
|
12 |
+
|
13 |
+
});
|
14 |
+
});
|
front-end/default-fields/gdpr-delete/gdpr-delete.php
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/* handle field output */
|
3 |
+
function wppb_gdpr_delete_handler( $output, $form_location, $field, $user_id, $field_check_errors, $request_data ){
|
4 |
+
if ( $field['field'] == 'GDPR Delete Button' ){
|
5 |
+
if ( $form_location === 'edit_profile' ){
|
6 |
+
$item_title = apply_filters( 'wppb_'.$form_location.'_gdpr_delete_custom_field_'.$field['id'].'_item_title', wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_title_translation', $field['field-title'] ) );
|
7 |
+
$item_description = wppb_icl_t( 'plugin profile-builder-pro', 'custom_field_'.$field['id'].'_description_translation', $field['description'] );
|
8 |
+
|
9 |
+
$edited_user_id = get_current_user_id();
|
10 |
+
if( ( !is_multisite() && current_user_can( 'edit_users' ) ) || ( is_multisite() && current_user_can( 'manage_network' ) ) ) {
|
11 |
+
if( isset( $_GET['edit_user'] ) && ! empty( $_GET['edit_user'] ) ){
|
12 |
+
$edited_user_id = absint( $_GET['edit_user'] );
|
13 |
+
}
|
14 |
+
}
|
15 |
+
|
16 |
+
$output = '
|
17 |
+
<label for="wppb-delete-account">'. wp_kses_post( $item_title ) .'</label>
|
18 |
+
<input class="wppb-delete-account" type="submit" value="'. __( 'Delete', 'profile-builder' ) .'" />';
|
19 |
+
$output .= '<span class="wppb-description-delimiter">'.trim( html_entity_decode ( $item_description ) ).'</span>';
|
20 |
+
|
21 |
+
|
22 |
+
$delete_url = add_query_arg( array(
|
23 |
+
'wppb_user' => $edited_user_id,
|
24 |
+
'wppb_action' => 'wppb_delete_user',
|
25 |
+
'wppb_nonce' => wp_create_nonce( 'wppb-user-own-account-deletion'),
|
26 |
+
), home_url());
|
27 |
+
|
28 |
+
wp_enqueue_script( 'wppb-gdpr-delete-script', WPPB_PLUGIN_URL.'front-end/default-fields/gdpr-delete/gdpr-delete.js', array('jquery'), PROFILE_BUILDER_VERSION, true );
|
29 |
+
wp_localize_script('wppb-gdpr-delete-script', 'wppbGdpr', array(
|
30 |
+
'delete_url' => $delete_url,
|
31 |
+
'delete_text' => sprintf(__('Type %s to confirm deleting your account and all data associated with it:', 'profile-builder'), 'DELETE' ),
|
32 |
+
'delete_error_text' => sprintf(__('You did not type %s. Try again!', 'profile-builder'), 'DELETE' ),
|
33 |
+
));
|
34 |
+
|
35 |
+
return apply_filters( 'wppb_'.$form_location.'_gdpr_delete_custom_field_'.$field['id'], $output, $form_location, $field, $user_id, $field_check_errors, $request_data );
|
36 |
+
}
|
37 |
+
}
|
38 |
+
}
|
39 |
+
add_filter( 'wppb_output_form_field_gdpr-delete-button', 'wppb_gdpr_delete_handler', 10, 6 );
|
40 |
+
|
front-end/default-fields/gdpr/gdpr.php
CHANGED
@@ -39,6 +39,8 @@ function wppb_save_gdpr_value( $field, $user_id, $request_data, $form_location )
|
|
39 |
if ( $form_location == 'register' || $form_location == 'edit_profile' ){
|
40 |
if ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) )
|
41 |
update_user_meta( $user_id, $field['meta-name'], $request_data[wppb_handle_meta_name( $field['meta-name'] )] );
|
|
|
|
|
42 |
}
|
43 |
}
|
44 |
}
|
39 |
if ( $form_location == 'register' || $form_location == 'edit_profile' ){
|
40 |
if ( isset( $request_data[wppb_handle_meta_name( $field['meta-name'] )] ) )
|
41 |
update_user_meta( $user_id, $field['meta-name'], $request_data[wppb_handle_meta_name( $field['meta-name'] )] );
|
42 |
+
//save the time when the user agreed
|
43 |
+
update_user_meta( $user_id, 'gdpr_agreement_time', time() );
|
44 |
}
|
45 |
}
|
46 |
}
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.0.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
|
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
-
define('PROFILE_BUILDER_VERSION', '3.0.
|
79 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
80 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
81 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.0.1
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
75 |
*
|
76 |
*
|
77 |
*/
|
78 |
+
define('PROFILE_BUILDER_VERSION', '3.0.1' );
|
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__));
|
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, profile
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 5.2.
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -16,7 +16,7 @@ Powerful user profile plugin for creating front-end login, user registration and
|
|
16 |
|
17 |
Easy to use profile plugin for creating front-end login, user registration and edit profile forms by using shortcodes.
|
18 |
|
19 |
-
Restrict Content based on user role or logged in status. Manage user roles and capabilities using the built in Role Editor
|
20 |
|
21 |
**Like this plugin?** Consider leaving a [5 star review](https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5).
|
22 |
|
@@ -27,17 +27,17 @@ To achieve this, simply create a new page and give it an intuitive name(i.e. Edi
|
|
27 |
Now all you need to do is add the following shortcode: [wppb-edit-profile].
|
28 |
Publish the page and you are done!
|
29 |
|
30 |
-
|
31 |
-
You can use the following shortcode list:
|
32 |
|
33 |
* **[wppb-edit-profile]** - to grant users front-end access to their user profile (requires user to be logged in).
|
34 |
* **[wppb-login]** - to add a front-end login form.
|
35 |
* **[wppb-logout]** - to add logout functionality.
|
36 |
-
* **[wppb-register]** - register users via a front-end register form.
|
37 |
* **[wppb-recover-password]** - to add a password recovery form.
|
38 |
-
* **[wppb-restrict]**Content to restrict**[/wppb-restrict]** - to restrict content of any type
|
39 |
|
40 |
-
|
41 |
|
42 |
* drag & drop to reorder user profile fields
|
43 |
* enable **Email Confirmation** (on registration users will receive a notification to confirm their email address)
|
@@ -49,9 +49,9 @@ Users with administrator rights have access to the following features:
|
|
49 |
* customizable user login widget
|
50 |
* add a custom stylesheet/inherit values from the current theme or use the default one built into this plugin
|
51 |
* **Admin Bar Settings**: choose which user roles view the admin bar in the front-end
|
52 |
-
* select which profile fields
|
53 |
* extended functionality available via [Add-ons](http://www.cozmoslabs.com/profile-builder-add-ons/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree)
|
54 |
-
* **Roles Editor**: add, edit, remove or clone roles and capabilities
|
55 |
* **reCAPTCHA** support for Profile Builder and Wordpress default forms
|
56 |
* **User Role Select** field on register and edit profile forms
|
57 |
* **Content Restriction**: [restrict content](https://www.cozmoslabs.com/105571-restrict-content-user-role-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) based on current users role or logged in status
|
@@ -68,6 +68,7 @@ The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_sourc
|
|
68 |
* Support for Conditional Fields
|
69 |
* Front-end User Listing (fully customizable, sorting included)
|
70 |
* Create Multiple User Listings
|
|
|
71 |
* Custom Redirects
|
72 |
* Multiple Registration Forms (set up [multiple registration forms](https://www.cozmoslabs.com/docs/profile-builder-2/modules/multiple-registration-forms/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) with different profile fields for certain user roles)
|
73 |
* Multiple Edit Profile Forms
|
@@ -168,6 +169,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
168 |
12. Role Editor
|
169 |
|
170 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
171 |
= 3.0.0 =
|
172 |
* Security improvements
|
173 |
* Added a filter for the Register and Edit Profile forms.
|
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, profile
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 5.2.2
|
7 |
+
Stable tag: 3.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
16 |
|
17 |
Easy to use profile plugin for creating front-end login, user registration and edit profile forms by using shortcodes.
|
18 |
|
19 |
+
**Restrict Content** based on user role or logged in status. Manage user roles and capabilities using the built in **Role Editor**.
|
20 |
|
21 |
**Like this plugin?** Consider leaving a [5 star review](https://wordpress.org/support/view/plugin-reviews/profile-builder?filter=5).
|
22 |
|
27 |
Now all you need to do is add the following shortcode: [wppb-edit-profile].
|
28 |
Publish the page and you are done!
|
29 |
|
30 |
+
== Front-end User Registration, Login, User Profile and Password Recovery Forms ==
|
31 |
+
You can use the following shortcode list to display the forms:
|
32 |
|
33 |
* **[wppb-edit-profile]** - to grant users front-end access to their user profile (requires user to be logged in).
|
34 |
* **[wppb-login]** - to add a front-end login form.
|
35 |
* **[wppb-logout]** - to add logout functionality.
|
36 |
+
* **[wppb-register]** - easily register users via a front-end register form.
|
37 |
* **[wppb-recover-password]** - to add a password recovery form.
|
38 |
+
* **[wppb-restrict]** Content to restrict **[/wppb-restrict]** - to restrict content of any type
|
39 |
|
40 |
+
== Profile Builder Features ==
|
41 |
|
42 |
* drag & drop to reorder user profile fields
|
43 |
* enable **Email Confirmation** (on registration users will receive a notification to confirm their email address)
|
49 |
* customizable user login widget
|
50 |
* add a custom stylesheet/inherit values from the current theme or use the default one built into this plugin
|
51 |
* **Admin Bar Settings**: choose which user roles view the admin bar in the front-end
|
52 |
+
* select which user profile fields are visible in the frontend
|
53 |
* extended functionality available via [Add-ons](http://www.cozmoslabs.com/profile-builder-add-ons/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree)
|
54 |
+
* **Roles Editor**: add, edit, remove or clone user roles and capabilities
|
55 |
* **reCAPTCHA** support for Profile Builder and Wordpress default forms
|
56 |
* **User Role Select** field on register and edit profile forms
|
57 |
* **Content Restriction**: [restrict content](https://www.cozmoslabs.com/105571-restrict-content-user-role-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) based on current users role or logged in status
|
68 |
* Support for Conditional Fields
|
69 |
* Front-end User Listing (fully customizable, sorting included)
|
70 |
* Create Multiple User Listings
|
71 |
+
* Create a [Map of Users Locations](https://www.cozmoslabs.com/160142-add-users-map-wordpress/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree)
|
72 |
* Custom Redirects
|
73 |
* Multiple Registration Forms (set up [multiple registration forms](https://www.cozmoslabs.com/docs/profile-builder-2/modules/multiple-registration-forms/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) with different profile fields for certain user roles)
|
74 |
* Multiple Edit Profile Forms
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
172 |
+
= 3.0.1 =
|
173 |
+
* Added GDPR Delete Button as a field
|
174 |
+
* Export Personal Data now exports Profile Builder fields
|
175 |
+
* GDPR improvements
|
176 |
+
|
177 |
= 3.0.0 =
|
178 |
* Security improvements
|
179 |
* Added a filter for the Register and Edit Profile forms.
|
translation/profile-builder.catalog.php
CHANGED
@@ -666,6 +666,14 @@
|
|
666 |
<?php __("Whether the field is required or not", "profile-builder"); ?>
|
667 |
<?php __("Overwrite Existing", "profile-builder"); ?>
|
668 |
<?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"); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
<?php __("Form Field Properties", "profile-builder"); ?>
|
670 |
<?php __("Registration & Edit Profile Forms", "profile-builder"); ?>
|
671 |
<?php __("Usernames cannot be changed.", "profile-builder"); ?>
|
@@ -1583,6 +1591,8 @@
|
|
1583 |
<?php __("Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com", "profile-builder"); ?>
|
1584 |
<?php __("After Registration...", "profile-builder"); ?>
|
1585 |
<?php __("Are you sure you want to delete this?", "profile-builder"); ?>
|
|
|
|
|
1586 |
<?php __("Add new User Listing", "profile-builder"); ?>
|
1587 |
<?php __("Edit the User Listing", "profile-builder"); ?>
|
1588 |
<?php __("New User Listing", "profile-builder"); ?>
|
@@ -1603,6 +1613,7 @@
|
|
1603 |
<?php __("Search all Fields", "profile-builder"); ?>
|
1604 |
<?php __("Faceted Menus", "profile-builder"); ?>
|
1605 |
<?php __("User Count", "profile-builder"); ?>
|
|
|
1606 |
<?php __("Go Back Link", "profile-builder"); ?>
|
1607 |
<?php __("All-userlisting Template", "profile-builder"); ?>
|
1608 |
<?php __("Single-userlisting Template", "profile-builder"); ?>
|
@@ -1693,6 +1704,8 @@
|
|
1693 |
<?php __("This email is already reserved to be used soon.", "profile-builder"); ?>
|
1694 |
<?php __("Please try a different one!", "profile-builder"); ?>
|
1695 |
<?php __("This email is already in use.", "profile-builder"); ?>
|
|
|
|
|
1696 |
<?php __("The passwords do not match", "profile-builder"); ?>
|
1697 |
<?php __("To use reCAPTCHA you must get an API key from", "profile-builder"); ?>
|
1698 |
<?php __("For security reasons, you must pass the remote ip to reCAPTCHA!", "profile-builder"); ?>
|
666 |
<?php __("Whether the field is required or not", "profile-builder"); ?>
|
667 |
<?php __("Overwrite Existing", "profile-builder"); ?>
|
668 |
<?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"); ?>
|
669 |
+
<?php __("POIs Load Type", "profile-builder"); ?>
|
670 |
+
<?php __("POIs of the listed users (as filtered & paginated)", "profile-builder"); ?>
|
671 |
+
<?php __("POIs of all the users for the filter* (no pagination)", "profile-builder"); ?>
|
672 |
+
<?php __("This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance.", "profile-builder"); ?>
|
673 |
+
<?php __("POI Bubble Info", "profile-builder"); ?>
|
674 |
+
<?php __("Select the attributes to be listed inside the POI bubble.", "profile-builder"); ?>
|
675 |
+
<?php __("Number of Users per Map Iteration", "profile-builder"); ?>
|
676 |
+
<?php __("When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300.", "profile-builder"); ?>
|
677 |
<?php __("Form Field Properties", "profile-builder"); ?>
|
678 |
<?php __("Registration & Edit Profile Forms", "profile-builder"); ?>
|
679 |
<?php __("Usernames cannot be changed.", "profile-builder"); ?>
|
1591 |
<?php __("Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com", "profile-builder"); ?>
|
1592 |
<?php __("After Registration...", "profile-builder"); ?>
|
1593 |
<?php __("Are you sure you want to delete this?", "profile-builder"); ?>
|
1594 |
+
<?php __("Please wait while the pins are loading...", "profile-builder"); ?>
|
1595 |
+
<?php __("The API Key was not provided.", "profile-builder"); ?>
|
1596 |
<?php __("Add new User Listing", "profile-builder"); ?>
|
1597 |
<?php __("Edit the User Listing", "profile-builder"); ?>
|
1598 |
<?php __("New User Listing", "profile-builder"); ?>
|
1613 |
<?php __("Search all Fields", "profile-builder"); ?>
|
1614 |
<?php __("Faceted Menus", "profile-builder"); ?>
|
1615 |
<?php __("User Count", "profile-builder"); ?>
|
1616 |
+
<?php __("Map of listed users", "profile-builder"); ?>
|
1617 |
<?php __("Go Back Link", "profile-builder"); ?>
|
1618 |
<?php __("All-userlisting Template", "profile-builder"); ?>
|
1619 |
<?php __("Single-userlisting Template", "profile-builder"); ?>
|
1704 |
<?php __("This email is already reserved to be used soon.", "profile-builder"); ?>
|
1705 |
<?php __("Please try a different one!", "profile-builder"); ?>
|
1706 |
<?php __("This email is already in use.", "profile-builder"); ?>
|
1707 |
+
<?php __("Type %s to confirm deleting your account and all data associated with it:", "profile-builder"); ?>
|
1708 |
+
<?php __("You did not type %s. Try again!", "profile-builder"); ?>
|
1709 |
<?php __("The passwords do not match", "profile-builder"); ?>
|
1710 |
<?php __("To use reCAPTCHA you must get an API key from", "profile-builder"); ?>
|
1711 |
<?php __("For security reasons, you must pass the remote ip to reCAPTCHA!", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -209,7 +209,7 @@ msgstr ""
|
|
209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../pb-add-on-buddypress/index.php:508, ../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:531, ../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:538, ../profile-builder-2.0/admin/manage-fields.php:
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
@@ -369,7 +369,7 @@ msgstr ""
|
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, ../profile-builder-2.0/front-end/class-formbuilder.php:
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
@@ -425,63 +425,63 @@ msgstr ""
|
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../pb-add-on-field-visibility/index.php:
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../pb-add-on-field-visibility/index.php:
|
433 |
msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../pb-add-on-field-visibility/index.php:
|
437 |
msgid "User Role Visibility"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../pb-add-on-field-visibility/index.php:
|
441 |
msgid "Select which user roles see this field"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../pb-add-on-field-visibility/index.php:
|
445 |
msgid "Location Visibility"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ../pb-add-on-field-visibility/index.php:
|
449 |
msgid "Select the locations you wish the field to appear"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ../pb-add-on-field-visibility/index.php:
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ../pb-add-on-field-visibility/index.php:
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: ../pb-add-on-field-visibility/index.php:
|
465 |
msgid "This field is visible only for administrators."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: ../pb-add-on-field-visibility/index.php:
|
469 |
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../pb-add-on-field-visibility/index.php:
|
473 |
msgid "This field is visible only for the following user roles: %1$s"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: ../pb-add-on-field-visibility/index.php:
|
477 |
msgid "This field is visible only in the following locations: %1$s"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: ../pb-add-on-field-visibility/index.php:
|
481 |
msgid "Get file"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: ../pb-add-on-field-visibility/index.php:
|
485 |
msgid "You do not have the capabilities necessary to edit this field."
|
486 |
msgstr ""
|
487 |
|
@@ -567,7 +567,7 @@ msgstr ""
|
|
567 |
msgid "You must select a label to edit!"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:
|
571 |
msgid "Labels"
|
572 |
msgstr ""
|
573 |
|
@@ -579,7 +579,7 @@ msgstr ""
|
|
579 |
msgid "No labels edited, nothing to export!"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: ../pb-add-on-mailpoet-integration/index.php:
|
583 |
msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
|
584 |
msgstr ""
|
585 |
|
@@ -685,7 +685,7 @@ msgstr ""
|
|
685 |
msgid "Replace labels with placeholders:"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, ../profile-builder-2.0/admin/general-settings.php:111, ../profile-builder-2.0/admin/general-settings.php:124, ../profile-builder-2.0/admin/general-settings.php:173, ../profile-builder-2.0/admin/general-settings.php:220, ../profile-builder-2.0/admin/private-website.php:58, ../profile-builder-2.0/admin/private-website.php:115, includes/views/view-admin.php:18, includes/views/view-admin.php:34, includes/views/view-fields.php:18, includes/views/view-fields.php:66, includes/views/view-fields.php:181, includes/views/view-fields.php:197, includes/views/view-fields.php:217, includes/views/view-fields.php:240, includes/views/view-fields.php:261, includes/views/view-forms.php:132, includes/views/view-forms.php:149, includes/views/view-forms.php:164, includes/views/view-forms.php:184, includes/views/view-forms.php:201, includes/views/view-forms.php:239, includes/views/view-forms.php:260, includes/views/view-forms.php:280, includes/views/view-forms.php:302, includes/views/view-shortcodes.php:16, includes/views/view-shortcodes.php:32, includes/views/view-shortcodes.php:48, includes/views/view-shortcodes.php:64, includes/views/view-userlisting.php:53, includes/views/view-userlisting.php:75, ../profile-builder-2.0/features/content-restriction/content-restriction.php:86, ../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:
|
689 |
msgid "Yes"
|
690 |
msgstr ""
|
691 |
|
@@ -945,11 +945,11 @@ msgstr ""
|
|
945 |
msgid "Country"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:
|
949 |
msgid "First Name"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:
|
953 |
msgid "Last Name"
|
954 |
msgstr ""
|
955 |
|
@@ -985,103 +985,103 @@ msgstr ""
|
|
985 |
msgid "Ship to a different address?"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: ../pb-add-on-woocommerce/index.php:
|
989 |
msgid "Billing Address"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: ../pb-add-on-woocommerce/index.php:
|
993 |
msgid "Displays customer billing fields in front-end. "
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: ../pb-add-on-woocommerce/index.php:
|
997 |
msgid "Shipping Address"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1001 |
msgid "Displays customer shipping fields in front-end. "
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1005 |
msgid "Address line 2"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1009 |
msgid "Billing Fields"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1013 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1017 |
msgid "Billing Fields Order"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1021 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1025 |
msgid "Billing Fields Name"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1029 |
msgid "Save the billing fields names"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1033 |
msgid "Shipping Fields"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1037 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1041 |
msgid "Shipping Fields Order"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1045 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1049 |
msgid "Shipping Fields Name"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1053 |
msgid "Save the shipping fields names"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1057 |
msgid "Field Name"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1061 |
msgid "Required"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1065 |
msgid "Click to edit "
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1069 |
msgid "The email you entered is not a valid email address."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1073 |
msgid "No options available. Please select one country."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1077 |
msgid "Billing "
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1081 |
msgid "Shipping "
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: ../pb-add-on-woocommerce/index.php:
|
1085 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1086 |
msgstr ""
|
1087 |
|
@@ -1129,7 +1129,7 @@ msgstr ""
|
|
1129 |
msgid "Campaign Monitor Integration"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:58, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:
|
1133 |
msgid "Save"
|
1134 |
msgstr ""
|
1135 |
|
@@ -1197,7 +1197,7 @@ msgstr ""
|
|
1197 |
msgid "Click to edit"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, ../profile-builder-2.0/features/functions.php:774, ../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:
|
1201 |
msgid "Cancel"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1331,7 +1331,7 @@ msgstr ""
|
|
1331 |
msgid "Communication Preferences"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, ../profile-builder-2.0/admin/manage-fields.php:
|
1335 |
msgid "E-mail"
|
1336 |
msgstr ""
|
1337 |
|
@@ -1419,7 +1419,7 @@ msgstr ""
|
|
1419 |
msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:540, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:
|
1423 |
msgid "Edit this item"
|
1424 |
msgstr ""
|
1425 |
|
@@ -1707,7 +1707,7 @@ msgstr ""
|
|
1707 |
msgid "Not compatible with Profile Builder"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: ../profile-builder-2.0/admin/add-ons.php:325, ../profile-builder-2.0/front-end/class-formbuilder.php:
|
1711 |
msgid "Update"
|
1712 |
msgstr ""
|
1713 |
|
@@ -1747,7 +1747,7 @@ msgstr ""
|
|
1747 |
msgid "Show"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: ../profile-builder-2.0/admin/admin-bar.php:78, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
1751 |
msgid "Hide"
|
1752 |
msgstr ""
|
1753 |
|
@@ -2255,11 +2255,11 @@ msgstr ""
|
|
2255 |
msgid "Username and Email"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: ../profile-builder-2.0/admin/general-settings.php:249, ../profile-builder-2.0/admin/manage-fields.php:
|
2259 |
msgid "Username"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: ../profile-builder-2.0/admin/general-settings.php:250, ../profile-builder-2.0/front-end/login.php:386, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
2263 |
msgid "Email"
|
2264 |
msgstr ""
|
2265 |
|
@@ -2291,2045 +2291,2077 @@ msgstr ""
|
|
2291 |
msgid "Disabled"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2295 |
msgid "Form Fields"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2299 |
msgid "Manage Form Fields"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2303 |
msgid "Choose one of the supported field types"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2307 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2311 |
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"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2315 |
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"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2319 |
msgid "Field Title"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2323 |
msgid "Title of the field"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2327 |
msgid "Field"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2331 |
msgid "Meta-name"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2335 |
msgid "ID"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2339 |
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"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2343 |
msgid "Description"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2347 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2351 |
msgid "Row Count"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2355 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2359 |
msgid "Allowed Image Extensions"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2363 |
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 (.*)"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2367 |
msgid "Allowed Upload Extensions"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2371 |
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 (.*)"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2375 |
msgid "Avatar Size"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2379 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2383 |
msgid "Date-format"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2387 |
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"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2391 |
msgid "Terms of Agreement"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2395 |
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>"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2399 |
msgid "Options"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2403 |
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"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2407 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2411 |
msgid "reCAPTCHA Type"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2415 |
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."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2419 |
msgid "Site Key"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2423 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2427 |
msgid "Secret Key"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2431 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2435 |
msgid "Display on PB forms"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2439 |
msgid "PB Login"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2443 |
msgid "PB Register"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2447 |
msgid "PB Recover Password"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2451 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2455 |
msgid "Display on default WP forms"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2459 |
msgid "Default WP Login"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2463 |
msgid "Default WP Register"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2467 |
msgid "Default WP Recover Password"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2471 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2475 |
msgid "User Roles"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2479 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2483 |
msgid "User Roles Order"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2487 |
msgid "Save the user role order from the user roles checkboxes"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2491 |
msgid "Default Value"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2495 |
msgid "Default value of the field"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2499 |
msgid "Default Option"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2503 |
msgid "Specify the option which should be selected by default"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2507 |
msgid "Default Option(s)"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2511 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2515 |
msgid "Default option of the field"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2519 |
msgid "Show Currency Symbol"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2523 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2527 |
msgid "Show Post Type"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2531 |
msgid "Posts from what post type will be displayed in the select."
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2535 |
msgid "Allowable Values"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2539 |
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."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2543 |
msgid "Error Message"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2547 |
msgid "Set a custom error message that will be displayed to the user."
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2551 |
msgid "Time Format"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2555 |
msgid "Specify the time format."
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2559 |
msgid "Google Maps API Key"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2563 |
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."
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2567 |
msgid "Default Latitude"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2571 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2575 |
msgid "Default Longitude"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2579 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2583 |
msgid "Default Zoom Level"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2587 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2591 |
msgid "Map Height"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2595 |
msgid "The height of the map."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2599 |
msgid "Default Content"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2603 |
msgid "Default value of the textarea"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2607 |
msgid "HTML Content"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2611 |
msgid "Add your HTML (or text) content"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2615 |
msgid "Phone Format"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2619 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2623 |
msgid "Eg. (###) ###-####"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2627 |
msgid "Empty field won't check for correct phone number."
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2631 |
msgid "Heading Tag"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2635 |
msgid "Change heading field size on front-end forms"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2639 |
msgid "Min Number Value"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2643 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2647 |
msgid "Leave it empty for no min value"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2651 |
msgid "Max Number Value"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2655 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2659 |
msgid "Leave it empty for no max value"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2663 |
msgid "Number Step Value"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2667 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2671 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2675 |
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)"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2679 |
msgid "Leave it empty for no restriction"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2683 |
msgid "Whether the field is required or not"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2687 |
msgid "Overwrite Existing"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2691 |
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"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2695 |
msgid "Form Field Properties"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2699 |
msgid "Registration & Edit Profile Forms"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2703 |
msgid "Usernames cannot be changed."
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2707 |
msgid "Nickname"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2711 |
msgid "Display name publicly as"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2715 |
msgid "Website"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2719 |
msgid "AIM"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2723 |
msgid "Yahoo IM"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2727 |
msgid "Jabber / Google Talk"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2731 |
msgid "Biographical Info"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2735 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2739 |
msgid "Password"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2743 |
msgid "Type your password."
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2747 |
msgid "Repeat Password"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2751 |
msgid "Type your password again. "
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2755 |
msgid "Blog Details"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2759 |
msgid "Select a Country"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2763 |
msgid "Afghanistan"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2767 |
msgid "Aland Islands"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2771 |
msgid "Albania"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2775 |
msgid "Algeria"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2779 |
msgid "American Samoa"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2783 |
msgid "Andorra"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2787 |
msgid "Angola"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2791 |
msgid "Anguilla"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2795 |
msgid "Antarctica"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2799 |
msgid "Antigua and Barbuda"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2803 |
msgid "Argentina"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2807 |
msgid "Armenia"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2811 |
msgid "Aruba"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2815 |
msgid "Australia"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2819 |
msgid "Austria"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2823 |
msgid "Azerbaijan"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2827 |
msgid "Bahamas"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2831 |
msgid "Bahrain"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2835 |
msgid "Bangladesh"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2839 |
msgid "Barbados"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2843 |
msgid "Belarus"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2847 |
msgid "Belgium"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2851 |
msgid "Belize"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2855 |
msgid "Benin"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2859 |
msgid "Bermuda"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2863 |
msgid "Bhutan"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2867 |
msgid "Bolivia"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2871 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2875 |
msgid "Bosnia and Herzegovina"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2879 |
msgid "Botswana"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2883 |
msgid "Bouvet Island"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2887 |
msgid "Brazil"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2891 |
msgid "British Indian Ocean Territory"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2895 |
msgid "British Virgin Islands"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2899 |
msgid "Brunei"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2903 |
msgid "Bulgaria"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2907 |
msgid "Burkina Faso"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2911 |
msgid "Burundi"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2915 |
msgid "Cambodia"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2919 |
msgid "Cameroon"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2923 |
msgid "Canada"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2927 |
msgid "Cape Verde"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2931 |
msgid "Cayman Islands"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2935 |
msgid "Central African Republic"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2939 |
msgid "Chad"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2943 |
msgid "Chile"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2947 |
msgid "China"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2951 |
msgid "Christmas Island"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2955 |
msgid "Cocos Islands"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2959 |
msgid "Colombia"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2963 |
msgid "Comoros"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2967 |
msgid "Cook Islands"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2971 |
msgid "Costa Rica"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2975 |
msgid "Croatia"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2979 |
msgid "Cuba"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2983 |
msgid "Curacao"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2987 |
msgid "Cyprus"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2991 |
msgid "Czech Republic"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2995 |
msgid "Democratic Republic of the Congo"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
2999 |
msgid "Denmark"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3003 |
msgid "Djibouti"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3007 |
msgid "Dominica"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3011 |
msgid "Dominican Republic"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3015 |
msgid "East Timor"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3019 |
msgid "Ecuador"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3023 |
msgid "Egypt"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3027 |
msgid "El Salvador"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3031 |
msgid "Equatorial Guinea"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3035 |
msgid "Eritrea"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3039 |
msgid "Estonia"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3043 |
msgid "Ethiopia"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3047 |
msgid "Falkland Islands"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3051 |
msgid "Faroe Islands"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3055 |
msgid "Fiji"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3059 |
msgid "Finland"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3063 |
msgid "France"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3067 |
msgid "French Guiana"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3071 |
msgid "French Polynesia"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3075 |
msgid "French Southern Territories"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3079 |
msgid "Gabon"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3083 |
msgid "Gambia"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3087 |
msgid "Georgia"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3091 |
msgid "Germany"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3095 |
msgid "Ghana"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3099 |
msgid "Gibraltar"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3103 |
msgid "Greece"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3107 |
msgid "Greenland"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3111 |
msgid "Grenada"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3115 |
msgid "Guadeloupe"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3119 |
msgid "Guam"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3123 |
msgid "Guatemala"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3127 |
msgid "Guernsey"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3131 |
msgid "Guinea"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3135 |
msgid "Guinea-Bissau"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3139 |
msgid "Guyana"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3143 |
msgid "Haiti"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3147 |
msgid "Heard Island and McDonald Islands"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3151 |
msgid "Honduras"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3155 |
msgid "Hong Kong"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3159 |
msgid "Hungary"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3163 |
msgid "Iceland"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3167 |
msgid "India"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3171 |
msgid "Indonesia"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3175 |
msgid "Iran"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3179 |
msgid "Iraq"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3183 |
msgid "Ireland"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3187 |
msgid "Isle of Man"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3191 |
msgid "Israel"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3195 |
msgid "Italy"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3199 |
msgid "Ivory Coast"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3203 |
msgid "Jamaica"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3207 |
msgid "Japan"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3211 |
msgid "Jersey"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3215 |
msgid "Jordan"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3219 |
msgid "Kazakhstan"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3223 |
msgid "Kenya"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3227 |
msgid "Kiribati"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3231 |
msgid "Kosovo"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3235 |
msgid "Kuwait"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3239 |
msgid "Kyrgyzstan"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3243 |
msgid "Laos"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3247 |
msgid "Latvia"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3251 |
msgid "Lebanon"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3255 |
msgid "Lesotho"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3259 |
msgid "Liberia"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3263 |
msgid "Libya"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3267 |
msgid "Liechtenstein"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3271 |
msgid "Lithuania"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3275 |
msgid "Luxembourg"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3279 |
msgid "Macao"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3283 |
msgid "Macedonia"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3287 |
msgid "Madagascar"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3291 |
msgid "Malawi"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3295 |
msgid "Malaysia"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3299 |
msgid "Maldives"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3303 |
msgid "Mali"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3307 |
msgid "Malta"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3311 |
msgid "Marshall Islands"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3315 |
msgid "Martinique"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3319 |
msgid "Mauritania"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3323 |
msgid "Mauritius"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3327 |
msgid "Mayotte"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3331 |
msgid "Mexico"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3335 |
msgid "Micronesia"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3339 |
msgid "Moldova"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3343 |
msgid "Monaco"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3347 |
msgid "Mongolia"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3351 |
msgid "Montenegro"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3355 |
msgid "Montserrat"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3359 |
msgid "Morocco"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3363 |
msgid "Mozambique"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3367 |
msgid "Myanmar"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3371 |
msgid "Namibia"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3375 |
msgid "Nauru"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3379 |
msgid "Nepal"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3383 |
msgid "Netherlands"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3387 |
msgid "New Caledonia"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3391 |
msgid "New Zealand"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3395 |
msgid "Nicaragua"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3399 |
msgid "Niger"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3403 |
msgid "Nigeria"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3407 |
msgid "Niue"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3411 |
msgid "Norfolk Island"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3415 |
msgid "North Korea"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3419 |
msgid "Northern Mariana Islands"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3423 |
msgid "Norway"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3427 |
msgid "Oman"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3431 |
msgid "Pakistan"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3435 |
msgid "Palau"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3439 |
msgid "Palestinian Territory"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3443 |
msgid "Panama"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3447 |
msgid "Papua New Guinea"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3451 |
msgid "Paraguay"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3455 |
msgid "Peru"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3459 |
msgid "Philippines"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3463 |
msgid "Pitcairn"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3467 |
msgid "Poland"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3471 |
msgid "Portugal"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3475 |
msgid "Puerto Rico"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3479 |
msgid "Qatar"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3483 |
msgid "Republic of the Congo"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3487 |
msgid "Reunion"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3491 |
msgid "Romania"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3495 |
msgid "Russia"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3499 |
msgid "Rwanda"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3503 |
msgid "Saint Barthelemy"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3507 |
msgid "Saint Helena"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3511 |
msgid "Saint Kitts and Nevis"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3515 |
msgid "Saint Lucia"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3519 |
msgid "Saint Martin"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3523 |
msgid "Saint Pierre and Miquelon"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3527 |
msgid "Saint Vincent and the Grenadines"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3531 |
msgid "Samoa"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3535 |
msgid "San Marino"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3539 |
msgid "Sao Tome and Principe"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3543 |
msgid "Saudi Arabia"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3547 |
msgid "Senegal"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3551 |
msgid "Serbia"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3555 |
msgid "Seychelles"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3559 |
msgid "Sierra Leone"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3563 |
msgid "Singapore"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3567 |
msgid "Sint Maarten"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3571 |
msgid "Slovakia"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3575 |
msgid "Slovenia"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3579 |
msgid "Solomon Islands"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3583 |
msgid "Somalia"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3587 |
msgid "South Africa"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3591 |
msgid "South Georgia and the South Sandwich Islands"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3595 |
msgid "South Korea"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3599 |
msgid "South Sudan"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3603 |
msgid "Spain"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3607 |
msgid "Sri Lanka"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3611 |
msgid "Sudan"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3615 |
msgid "Suriname"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3619 |
msgid "Svalbard and Jan Mayen"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3623 |
msgid "Swaziland"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3627 |
msgid "Sweden"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3631 |
msgid "Switzerland"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3635 |
msgid "Syria"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3639 |
msgid "Taiwan"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3643 |
msgid "Tajikistan"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3647 |
msgid "Tanzania"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3651 |
msgid "Thailand"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3655 |
msgid "Togo"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3659 |
msgid "Tokelau"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3663 |
msgid "Tonga"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3667 |
msgid "Trinidad and Tobago"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3671 |
msgid "Tunisia"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3675 |
msgid "Turkey"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3679 |
msgid "Turkmenistan"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3683 |
msgid "Turks and Caicos Islands"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3687 |
msgid "Tuvalu"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3691 |
msgid "U.S. Virgin Islands"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3695 |
msgid "Uganda"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3699 |
msgid "Ukraine"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3703 |
msgid "United Arab Emirates"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3707 |
msgid "United Kingdom"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3711 |
msgid "United States"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3715 |
msgid "United States Minor Outlying Islands"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3719 |
msgid "Uruguay"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3723 |
msgid "Uzbekistan"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3727 |
msgid "Vanuatu"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3731 |
msgid "Vatican"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3735 |
msgid "Venezuela"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3739 |
msgid "Vietnam"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3743 |
msgid "Wallis and Futuna"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3747 |
msgid "Western Sahara"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3751 |
msgid "Yemen"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3755 |
msgid "Zambia"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3759 |
msgid "Zimbabwe"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3763 |
msgid "Albania Lek"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3767 |
msgid "Afghanistan Afghani"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3771 |
msgid "Argentina Peso"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3775 |
msgid "Australia Dollar"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3779 |
msgid "Azerbaijan New Manat"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3783 |
msgid "Bahamas Dollar"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3787 |
msgid "Barbados Dollar"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3791 |
msgid "Bangladeshi taka"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3795 |
msgid "Belarus Ruble"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3799 |
msgid "Belize Dollar"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3803 |
msgid "Bermuda Dollar"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3807 |
msgid "Bolivia Boliviano"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3811 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3815 |
msgid "Botswana Pula"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3819 |
msgid "Bulgaria Lev"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3823 |
msgid "Brazil Real"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3827 |
msgid "Brunei Darussalam Dollar"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3831 |
msgid "Cambodia Riel"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3835 |
msgid "Canada Dollar"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3839 |
msgid "Cayman Islands Dollar"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3843 |
msgid "Chile Peso"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3847 |
msgid "China Yuan Renminbi"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3851 |
msgid "Colombia Peso"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3855 |
msgid "Costa Rica Colon"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3859 |
msgid "Croatia Kuna"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3863 |
msgid "Cuba Peso"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3867 |
msgid "Czech Republic Koruna"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3871 |
msgid "Denmark Krone"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3875 |
msgid "Dominican Republic Peso"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3879 |
msgid "East Caribbean Dollar"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3883 |
msgid "Egypt Pound"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3887 |
msgid "El Salvador Colon"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3891 |
msgid "Estonia Kroon"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3895 |
msgid "Euro"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3899 |
msgid "Falkland Islands (Malvinas) Pound"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3903 |
msgid "Fiji Dollar"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3907 |
msgid "Ghana Cedis"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3911 |
msgid "Gibraltar Pound"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3915 |
msgid "Guatemala Quetzal"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3919 |
msgid "Guernsey Pound"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3923 |
msgid "Guyana Dollar"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3927 |
msgid "Honduras Lempira"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3931 |
msgid "Hong Kong Dollar"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3935 |
msgid "Hungary Forint"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3939 |
msgid "Iceland Krona"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3943 |
msgid "India Rupee"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3947 |
msgid "Indonesia Rupiah"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3951 |
msgid "Iran Rial"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3955 |
msgid "Isle of Man Pound"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3959 |
msgid "Israel Shekel"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3963 |
msgid "Jamaica Dollar"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3967 |
msgid "Japan Yen"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3971 |
msgid "Jersey Pound"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3975 |
msgid "Kazakhstan Tenge"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3979 |
msgid "Korea (North) Won"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3983 |
msgid "Korea (South) Won"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3987 |
msgid "Kyrgyzstan Som"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3991 |
msgid "Laos Kip"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3995 |
msgid "Latvia Lat"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
3999 |
msgid "Lebanon Pound"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4003 |
msgid "Liberia Dollar"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4007 |
msgid "Lithuania Litas"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4011 |
msgid "Macedonia Denar"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4015 |
msgid "Malaysia Ringgit"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4019 |
msgid "Mauritius Rupee"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4023 |
msgid "Mexico Peso"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4027 |
msgid "Mongolia Tughrik"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4031 |
msgid "Mozambique Metical"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4035 |
msgid "Namibia Dollar"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4039 |
msgid "Nepal Rupee"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4043 |
msgid "Netherlands Antilles Guilder"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4047 |
msgid "New Zealand Dollar"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4051 |
msgid "Nicaragua Cordoba"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4055 |
msgid "Nigeria Naira"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4059 |
msgid "Norway Krone"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4063 |
msgid "Oman Rial"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4067 |
msgid "Pakistan Rupee"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4071 |
msgid "Panama Balboa"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4075 |
msgid "Paraguay Guarani"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4079 |
msgid "Peru Nuevo Sol"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4083 |
msgid "Philippines Peso"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4087 |
msgid "Poland Zloty"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4091 |
msgid "Qatar Riyal"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4095 |
msgid "Romania New Leu"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4099 |
msgid "Russia Ruble"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4103 |
msgid "Saint Helena Pound"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4107 |
msgid "Saudi Arabia Riyal"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4111 |
msgid "Serbia Dinar"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4115 |
msgid "Seychelles Rupee"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4119 |
msgid "Singapore Dollar"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4123 |
msgid "Solomon Islands Dollar"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4127 |
msgid "Somalia Shilling"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4131 |
msgid "South Africa Rand"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4135 |
msgid "Sri Lanka Rupee"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4139 |
msgid "Sweden Krona"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4143 |
msgid "Switzerland Franc"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4147 |
msgid "Suriname Dollar"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4151 |
msgid "Syria Pound"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4155 |
msgid "Taiwan New Dollar"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4159 |
msgid "Thailand Baht"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4163 |
msgid "Trinidad and Tobago Dollar"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4167 |
msgid "Turkey Lira"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4171 |
msgid "Tuvalu Dollar"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4175 |
msgid "Ukraine Hryvna"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4179 |
msgid "United Kingdom Pound"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4183 |
msgid "Uganda Shilling"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4187 |
msgid "US Dollar"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4191 |
msgid "Uruguay Peso"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4195 |
msgid "Uzbekistan Som"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4199 |
msgid "Venezuela Bolivar"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4203 |
msgid "Viet Nam Dong"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4207 |
msgid "Yemen Rial"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4211 |
msgid "Zimbabwe Dollar"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4215 |
msgid ""
|
4216 |
"You must select a field\n"
|
4217 |
""
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4221 |
msgid ""
|
4222 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4223 |
""
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4227 |
msgid ""
|
4228 |
"The entered avatar size is not between 20 and 200\n"
|
4229 |
""
|
4230 |
msgstr ""
|
4231 |
|
4232 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4233 |
msgid ""
|
4234 |
"The entered avatar size is not numerical\n"
|
4235 |
""
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4239 |
msgid ""
|
4240 |
"The entered row number is not numerical\n"
|
4241 |
""
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4245 |
msgid ""
|
4246 |
"You must enter a value for the row number\n"
|
4247 |
""
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4251 |
msgid ""
|
4252 |
"You must enter the site key\n"
|
4253 |
""
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4257 |
msgid ""
|
4258 |
"You must enter the secret key\n"
|
4259 |
""
|
4260 |
msgstr ""
|
4261 |
|
4262 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4263 |
msgid ""
|
4264 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4265 |
""
|
4266 |
msgstr ""
|
4267 |
|
4268 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4269 |
msgid ""
|
4270 |
"You must enter a value for the date-format\n"
|
4271 |
""
|
4272 |
msgstr ""
|
4273 |
|
4274 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4275 |
msgid ""
|
4276 |
"The meta-name cannot be empty\n"
|
4277 |
""
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4281 |
msgid ""
|
4282 |
"That meta-name is already in use\n"
|
4283 |
""
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4287 |
msgid ""
|
4288 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4289 |
""
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4293 |
msgid ""
|
4294 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4295 |
""
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4299 |
msgid ""
|
4300 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4301 |
""
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4305 |
msgid ""
|
4306 |
"Please select at least one user role\n"
|
4307 |
""
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4311 |
msgid ""
|
4312 |
"That field is already added in this form\n"
|
4313 |
""
|
4314 |
msgstr ""
|
4315 |
|
4316 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4317 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4318 |
msgstr ""
|
4319 |
|
4320 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4321 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4322 |
msgstr ""
|
4323 |
|
4324 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4325 |
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."
|
4326 |
msgstr ""
|
4327 |
|
4328 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4329 |
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."
|
4330 |
msgstr ""
|
4331 |
|
4332 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
4333 |
msgid "Search Location"
|
4334 |
msgstr ""
|
4335 |
|
@@ -4445,7 +4477,7 @@ msgstr ""
|
|
4445 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: ../profile-builder-2.0/admin/private-website.php:127, ../profile-builder-2.0/features/functions.php:767, includes/views/view-admin.php:47, includes/views/view-fields.php:275, includes/views/view-forms.php:321, includes/views/view-shortcodes.php:77, includes/views/view-userlisting.php:91, ../profile-builder-2.0/features/content-restriction/content-restriction.php:159, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390, ../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:
|
4449 |
msgid "Save Changes"
|
4450 |
msgstr ""
|
4451 |
|
@@ -4561,7 +4593,7 @@ msgstr ""
|
|
4561 |
msgid "Incorrect phone number"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: ../profile-builder-2.0/features/functions.php:795, ../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:
|
4565 |
msgid "Content"
|
4566 |
msgstr ""
|
4567 |
|
@@ -4617,51 +4649,51 @@ msgstr ""
|
|
4617 |
msgid "You must be logged in to edit your profile."
|
4618 |
msgstr ""
|
4619 |
|
4620 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4621 |
msgid "You are not allowed to do this."
|
4622 |
msgstr ""
|
4623 |
|
4624 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4625 |
msgid "The account %1s has been successfully created!"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4629 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4630 |
msgstr ""
|
4631 |
|
4632 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4633 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4637 |
msgid "Your profile has been successfully updated!"
|
4638 |
msgstr ""
|
4639 |
|
4640 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4641 |
msgid "There was an error in the submitted form"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4645 |
msgid "Add User"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4649 |
msgid "Send these credentials via email."
|
4650 |
msgstr ""
|
4651 |
|
4652 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4653 |
msgid "User to edit:"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4657 |
msgid "Select User"
|
4658 |
msgstr ""
|
4659 |
|
4660 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4661 |
msgid "There are no other users to edit"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
4665 |
msgid "Something went wrong. Please try again!"
|
4666 |
msgstr ""
|
4667 |
|
@@ -4789,11 +4821,11 @@ msgstr ""
|
|
4789 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
-
#: ../profile-builder-2.0/front-end/recover.php:266, ../profile-builder-2.0/front-end/default-fields/password/password.php:
|
4793 |
msgid "The password must have the minimum length of %s characters"
|
4794 |
msgstr ""
|
4795 |
|
4796 |
-
#: ../profile-builder-2.0/front-end/recover.php:270, ../profile-builder-2.0/front-end/default-fields/password/password.php:
|
4797 |
msgid "The password must have a minimum strength of %s"
|
4798 |
msgstr ""
|
4799 |
|
@@ -5353,15 +5385,15 @@ msgstr ""
|
|
5353 |
msgid "Approve"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5357 |
msgid "Firstname"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5361 |
msgid "Lastname"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
5365 |
msgid "Role"
|
5366 |
msgstr ""
|
5367 |
|
@@ -6301,27 +6333,27 @@ msgstr ""
|
|
6301 |
msgid "No Edit-profile Forms found in trash"
|
6302 |
msgstr ""
|
6303 |
|
6304 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6305 |
msgid "Shortcode"
|
6306 |
msgstr ""
|
6307 |
|
6308 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6309 |
msgid "(no title)"
|
6310 |
msgstr ""
|
6311 |
|
6312 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6313 |
msgid "The shortcode will be available after you publish this form."
|
6314 |
msgstr ""
|
6315 |
|
6316 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6317 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6318 |
msgstr ""
|
6319 |
|
6320 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6321 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6322 |
msgstr ""
|
6323 |
|
6324 |
-
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6325 |
msgid "Form Shortcode"
|
6326 |
msgstr ""
|
6327 |
|
@@ -6437,6 +6469,14 @@ msgstr ""
|
|
6437 |
msgid "Are you sure you want to delete this?"
|
6438 |
msgstr ""
|
6439 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6440 |
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:14
|
6441 |
msgid "Add new User Listing"
|
6442 |
msgstr ""
|
@@ -6469,11 +6509,11 @@ msgstr ""
|
|
6469 |
msgid "Display name as"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6473 |
msgid "Registration Date"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6477 |
msgid "Number of Posts"
|
6478 |
msgstr ""
|
6479 |
|
@@ -6497,7 +6537,7 @@ msgstr ""
|
|
6497 |
msgid "Sort Tags"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:222, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6501 |
msgid "Extra Functions"
|
6502 |
msgstr ""
|
6503 |
|
@@ -6509,7 +6549,7 @@ msgstr ""
|
|
6509 |
msgid "Search all Fields"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6513 |
msgid "Faceted Menus"
|
6514 |
msgstr ""
|
6515 |
|
@@ -6517,319 +6557,323 @@ msgstr ""
|
|
6517 |
msgid "User Count"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
|
|
|
|
|
|
|
|
6521 |
msgid "Go Back Link"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6525 |
msgid "All-userlisting Template"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6529 |
msgid "Single-userlisting Template"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6533 |
msgid "Avatar"
|
6534 |
msgstr ""
|
6535 |
|
6536 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6537 |
msgid "Posts"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6541 |
msgid "Sign-up Date"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6545 |
msgid "More"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6549 |
msgid "You do not have permission to view this user list."
|
6550 |
msgstr ""
|
6551 |
|
6552 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6553 |
msgid "You do not have the required user role to view this user list."
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6557 |
msgid "User not found"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6561 |
msgid "First/Lastname"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6565 |
msgid "Display Name"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6569 |
msgid "Aim"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6573 |
msgid "Yim"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6577 |
msgid "Jabber"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6581 |
msgid "Search Users by All Fields"
|
6582 |
msgstr ""
|
6583 |
|
6584 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6585 |
msgid "Click here to see more information about this user"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6589 |
msgid "More..."
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6593 |
msgid "Click here to see more information about this user."
|
6594 |
msgstr ""
|
6595 |
|
6596 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6597 |
msgid "View Map"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6601 |
msgid "Click here to go back"
|
6602 |
msgstr ""
|
6603 |
|
6604 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6605 |
msgid "Back"
|
6606 |
msgstr ""
|
6607 |
|
6608 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6609 |
msgid "«« First"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6613 |
msgid "« Prev"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6617 |
msgid "Next » "
|
6618 |
msgstr ""
|
6619 |
|
6620 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6621 |
msgid "Last »»"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6625 |
msgid "You don't have any pagination settings on this userlisting!"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6629 |
msgid "Show All"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6633 |
msgid "Choose..."
|
6634 |
msgstr ""
|
6635 |
|
6636 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6637 |
msgid "No options available"
|
6638 |
msgstr ""
|
6639 |
|
6640 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6641 |
msgid "Remove All Filters"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6645 |
msgid "Search"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6649 |
msgid "Clear Results"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6653 |
msgid "Extra shortcode parameters"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6657 |
msgid "View all extra shortcode parameters"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6661 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6665 |
msgid "Example:"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6669 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6673 |
msgid "displays only the users that you specified the user_id for"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6677 |
msgid "displays all users except the ones you specified the user_id for"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6681 |
msgid "Random (very slow on large databases > 10K user)"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6685 |
msgid "Ascending"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6689 |
msgid "Descending"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6693 |
msgid "Roles to Display"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6697 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6701 |
msgid "Number of Users/Page"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6705 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6709 |
msgid "Default Sorting Criteria"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6713 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6717 |
msgid "Default Sorting Order"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6721 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6725 |
msgid "Avatar Size (All-userlisting)"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6729 |
msgid "Set the avatar size on the all-userlisting only"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6733 |
msgid "Avatar Size (Single-userlisting)"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6737 |
msgid "Set the avatar size on the single-userlisting only"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6741 |
msgid "Visible only to logged in users?"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6745 |
msgid "The userlisting will only be visible only to the logged in users"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6749 |
msgid "Visible to following Roles"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6753 |
msgid "The userlisting will only be visible to the following roles"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6757 |
msgid "Userlisting Settings"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6761 |
msgid "Label"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6765 |
msgid "Choose the facet name that appears on the frontend"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6769 |
msgid "Facet Type"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6773 |
msgid "Choose the facet menu type"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6777 |
msgid "Facet Meta"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6781 |
msgid "Choose the meta field for the facet menu"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6785 |
msgid "Behaviour"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6789 |
msgid "Narrow the results"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6793 |
msgid "Expand the results"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6797 |
msgid "Choose how multiple selections affect the results"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6801 |
msgid "Visible choices"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6805 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6809 |
msgid "Search Fields"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6813 |
msgid "Choose the fields in which the Search Field will look in"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6817 |
msgid "Search Settings"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6821 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6825 |
msgid "You can find it in the Profile Builder menu."
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:
|
6829 |
msgid "No results found!"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:541, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:
|
6833 |
msgid "Delete this item"
|
6834 |
msgstr ""
|
6835 |
|
@@ -6877,6 +6921,14 @@ msgstr ""
|
|
6877 |
msgid "This email is already in use."
|
6878 |
msgstr ""
|
6879 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6880 |
#: ../profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37, ../profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
|
6881 |
msgid "The passwords do not match"
|
6882 |
msgstr ""
|
209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../pb-add-on-buddypress/index.php:508, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, ../profile-builder-2.0/admin/manage-fields.php:316
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../pb-add-on-buddypress/index.php:531, ../profile-builder-2.0/admin/manage-fields.php:322
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../pb-add-on-buddypress/index.php:538, ../profile-builder-2.0/admin/manage-fields.php:333
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../pb-add-on-custom-profile-menus/index.php:308, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, ../profile-builder-2.0/front-end/class-formbuilder.php:422, ../profile-builder-2.0/front-end/login.php:421
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../pb-add-on-field-visibility/index.php:206, ../profile-builder-2.0/admin/admin-bar.php:61
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../pb-add-on-field-visibility/index.php:206
|
433 |
msgid "<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../pb-add-on-field-visibility/index.php:207
|
437 |
msgid "User Role Visibility"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../pb-add-on-field-visibility/index.php:207
|
441 |
msgid "Select which user roles see this field"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../pb-add-on-field-visibility/index.php:208
|
445 |
msgid "Location Visibility"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../pb-add-on-field-visibility/index.php:208
|
449 |
msgid "Select the locations you wish the field to appear"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ../pb-add-on-field-visibility/index.php:226
|
453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ../pb-add-on-field-visibility/index.php:226, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1312, ../profile-builder-2.0/features/functions.php:788, ../profile-builder-2.0/features/functions.php:795, ../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
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:226, ../profile-builder-2.0/admin/manage-fields.php:1312, ../profile-builder-2.0/features/functions.php:781, ../profile-builder-2.0/features/functions.php:795, ../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, ../profile-builder-2.0/front-end/default-fields/gdpr-delete/gdpr-delete.php:18
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: ../pb-add-on-field-visibility/index.php:247
|
465 |
msgid "This field is visible only for administrators."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: ../pb-add-on-field-visibility/index.php:250
|
469 |
msgid "This field is visible for both administrators and users, but only administrators have the capability to edit it."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: ../pb-add-on-field-visibility/index.php:273
|
473 |
msgid "This field is visible only for the following user roles: %1$s"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: ../pb-add-on-field-visibility/index.php:319
|
477 |
msgid "This field is visible only in the following locations: %1$s"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: ../pb-add-on-field-visibility/index.php:461
|
481 |
msgid "Get file"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: ../pb-add-on-field-visibility/index.php:590
|
485 |
msgid "You do not have the capabilities necessary to edit this field."
|
486 |
msgstr ""
|
487 |
|
567 |
msgid "You must select a label to edit!"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:189
|
571 |
msgid "Labels"
|
572 |
msgstr ""
|
573 |
|
579 |
msgid "No labels edited, nothing to export!"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: ../pb-add-on-mailpoet-integration/index.php:128
|
583 |
msgid "MailPoet Newsletters needs to be installed and activated for Profile Builder - MailPoet Add-on to work!"
|
584 |
msgstr ""
|
585 |
|
685 |
msgid "Replace labels with placeholders:"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:324, ../profile-builder-2.0/admin/general-settings.php:111, ../profile-builder-2.0/admin/general-settings.php:124, ../profile-builder-2.0/admin/general-settings.php:173, ../profile-builder-2.0/admin/general-settings.php:220, ../profile-builder-2.0/admin/private-website.php:58, ../profile-builder-2.0/admin/private-website.php:115, includes/views/view-admin.php:18, includes/views/view-admin.php:34, includes/views/view-fields.php:18, includes/views/view-fields.php:66, includes/views/view-fields.php:181, includes/views/view-fields.php:197, includes/views/view-fields.php:217, includes/views/view-fields.php:240, includes/views/view-fields.php:261, includes/views/view-forms.php:132, includes/views/view-forms.php:149, includes/views/view-forms.php:164, includes/views/view-forms.php:184, includes/views/view-forms.php:201, includes/views/view-forms.php:239, includes/views/view-forms.php:260, includes/views/view-forms.php:280, includes/views/view-forms.php:302, includes/views/view-shortcodes.php:16, includes/views/view-shortcodes.php:32, includes/views/view-shortcodes.php:48, includes/views/view-shortcodes.php:64, includes/views/view-userlisting.php:53, includes/views/view-userlisting.php:75, ../profile-builder-2.0/features/content-restriction/content-restriction.php:86, ../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:2359
|
689 |
msgid "Yes"
|
690 |
msgstr ""
|
691 |
|
945 |
msgid "Country"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:318, includes/views/view-fields.php:127
|
949 |
msgid "First Name"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:319, includes/views/view-fields.php:133
|
953 |
msgid "Last Name"
|
954 |
msgstr ""
|
955 |
|
985 |
msgid "Ship to a different address?"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: ../pb-add-on-woocommerce/index.php:167, ../pb-add-on-woocommerce/index.php:736
|
989 |
msgid "Billing Address"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: ../pb-add-on-woocommerce/index.php:167
|
993 |
msgid "Displays customer billing fields in front-end. "
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: ../pb-add-on-woocommerce/index.php:171, ../pb-add-on-woocommerce/index.php:737
|
997 |
msgid "Shipping Address"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: ../pb-add-on-woocommerce/index.php:171
|
1001 |
msgid "Displays customer shipping fields in front-end. "
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: ../pb-add-on-woocommerce/index.php:246, ../pb-add-on-woocommerce/index.php:265, ../pb-add-on-woocommerce/index.php:362, ../pb-add-on-woocommerce/index.php:365, ../pb-add-on-woocommerce/index.php:792
|
1005 |
msgid "Address line 2"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: ../pb-add-on-woocommerce/index.php:254
|
1009 |
msgid "Billing Fields"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: ../pb-add-on-woocommerce/index.php:254
|
1013 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: ../pb-add-on-woocommerce/index.php:255
|
1017 |
msgid "Billing Fields Order"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: ../pb-add-on-woocommerce/index.php:255
|
1021 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: ../pb-add-on-woocommerce/index.php:256
|
1025 |
msgid "Billing Fields Name"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: ../pb-add-on-woocommerce/index.php:256
|
1029 |
msgid "Save the billing fields names"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: ../pb-add-on-woocommerce/index.php:273
|
1033 |
msgid "Shipping Fields"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: ../pb-add-on-woocommerce/index.php:273
|
1037 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: ../pb-add-on-woocommerce/index.php:274
|
1041 |
msgid "Shipping Fields Order"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: ../pb-add-on-woocommerce/index.php:274
|
1045 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: ../pb-add-on-woocommerce/index.php:275
|
1049 |
msgid "Shipping Fields Name"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: ../pb-add-on-woocommerce/index.php:275
|
1053 |
msgid "Save the shipping fields names"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: ../pb-add-on-woocommerce/index.php:303
|
1057 |
msgid "Field Name"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: ../pb-add-on-woocommerce/index.php:304, ../profile-builder-2.0/admin/manage-fields.php:240
|
1061 |
msgid "Required"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: ../pb-add-on-woocommerce/index.php:367
|
1065 |
msgid "Click to edit "
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: ../pb-add-on-woocommerce/index.php:391, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
|
1069 |
msgid "The email you entered is not a valid email address."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: ../pb-add-on-woocommerce/index.php:649
|
1073 |
msgid "No options available. Please select one country."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: ../pb-add-on-woocommerce/index.php:668, ../pb-add-on-woocommerce/index.php:693
|
1077 |
msgid "Billing "
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: ../pb-add-on-woocommerce/index.php:676, ../pb-add-on-woocommerce/index.php:700
|
1081 |
msgid "Shipping "
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: ../pb-add-on-woocommerce/index.php:853
|
1085 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
1086 |
msgstr ""
|
1087 |
|
1129 |
msgid "Campaign Monitor Integration"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:58, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:94, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:340, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:343
|
1133 |
msgid "Save"
|
1134 |
msgstr ""
|
1135 |
|
1197 |
msgid "Click to edit"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: ../pb-add-on-campaign-monitor-integration/admin/cmonitor-page.php:451, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, ../profile-builder-2.0/features/functions.php:774, ../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:406
|
1201 |
msgid "Cancel"
|
1202 |
msgstr ""
|
1203 |
|
1331 |
msgid "Communication Preferences"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, ../profile-builder-2.0/admin/manage-fields.php:323, ../profile-builder-2.0/front-end/recover.php:119, includes/shortcodes/resend-activation.php:9, ../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
|
1335 |
msgid "E-mail"
|
1336 |
msgstr ""
|
1337 |
|
1419 |
msgid "Enter a MailChimp API key. You can create keys in your MailChimp account."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:157, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:540, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:544
|
1423 |
msgid "Edit this item"
|
1424 |
msgstr ""
|
1425 |
|
1707 |
msgid "Not compatible with Profile Builder"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: ../profile-builder-2.0/admin/add-ons.php:325, ../profile-builder-2.0/front-end/class-formbuilder.php:425
|
1711 |
msgid "Update"
|
1712 |
msgstr ""
|
1713 |
|
1747 |
msgid "Show"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: ../profile-builder-2.0/admin/admin-bar.php:78, ../profile-builder-2.0/modules/user-listing/userlisting.php:1638
|
1751 |
msgid "Hide"
|
1752 |
msgstr ""
|
1753 |
|
2255 |
msgid "Username and Email"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: ../profile-builder-2.0/admin/general-settings.php:249, ../profile-builder-2.0/admin/manage-fields.php:317, ../profile-builder-2.0/front-end/login.php:246, ../profile-builder-2.0/front-end/login.php:260, ../profile-builder-2.0/front-end/login.php:389, includes/views/view-fields.php:121, ../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:311, ../profile-builder-2.0/modules/user-listing/userlisting.php:786, ../profile-builder-2.0/modules/user-listing/userlisting.php:2310
|
2259 |
msgid "Username"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: ../profile-builder-2.0/admin/general-settings.php:250, ../profile-builder-2.0/front-end/login.php:386, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:29, ../profile-builder-2.0/modules/user-listing/userlisting.php:792, ../profile-builder-2.0/modules/user-listing/userlisting.php:2311
|
2263 |
msgid "Email"
|
2264 |
msgstr ""
|
2265 |
|
2291 |
msgid "Disabled"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:17
|
2295 |
msgid "Form Fields"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:18
|
2299 |
msgid "Manage Form Fields"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:125
|
2303 |
msgid "Choose one of the supported field types"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:127
|
2307 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:160
|
2311 |
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"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:163
|
2315 |
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"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
2319 |
msgid "Field Title"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
2323 |
msgid "Title of the field"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
2327 |
msgid "Field"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:179
|
2331 |
msgid "Meta-name"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:180, ../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
|
2335 |
msgid "ID"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:180, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:267
|
2339 |
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"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:181
|
2343 |
msgid "Description"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:181
|
2347 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:182
|
2351 |
msgid "Row Count"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:182
|
2355 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:183
|
2359 |
msgid "Allowed Image Extensions"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:183
|
2363 |
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 (.*)"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:184
|
2367 |
msgid "Allowed Upload Extensions"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:184
|
2371 |
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 (.*)"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:185
|
2375 |
msgid "Avatar Size"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:185
|
2379 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:186
|
2383 |
msgid "Date-format"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:186
|
2387 |
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"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:187
|
2391 |
msgid "Terms of Agreement"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:187
|
2395 |
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>"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:188
|
2399 |
msgid "Options"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:188
|
2403 |
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"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:189
|
2407 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:190
|
2411 |
msgid "reCAPTCHA Type"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:190
|
2415 |
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."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:191
|
2419 |
msgid "Site Key"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:191
|
2423 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:192
|
2427 |
msgid "Secret Key"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:192
|
2431 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
2435 |
msgid "Display on PB forms"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
2439 |
msgid "PB Login"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
2443 |
msgid "PB Register"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
2447 |
msgid "PB Recover Password"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
2451 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
2455 |
msgid "Display on default WP forms"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
2459 |
msgid "Default WP Login"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
2463 |
msgid "Default WP Register"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
2467 |
msgid "Default WP Recover Password"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
2471 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:195
|
2475 |
msgid "User Roles"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:195
|
2479 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:196
|
2483 |
msgid "User Roles Order"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:196
|
2487 |
msgid "Save the user role order from the user roles checkboxes"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:197
|
2491 |
msgid "Default Value"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:197
|
2495 |
msgid "Default value of the field"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:198, ../profile-builder-2.0/admin/manage-fields.php:200, ../profile-builder-2.0/admin/manage-fields.php:201, ../profile-builder-2.0/admin/manage-fields.php:202
|
2499 |
msgid "Default Option"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:198
|
2503 |
msgid "Specify the option which should be selected by default"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:199
|
2507 |
msgid "Default Option(s)"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:199
|
2511 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:200, ../profile-builder-2.0/admin/manage-fields.php:201, ../profile-builder-2.0/admin/manage-fields.php:202
|
2515 |
msgid "Default option of the field"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:203
|
2519 |
msgid "Show Currency Symbol"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:203
|
2523 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:204
|
2527 |
msgid "Show Post Type"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:204
|
2531 |
msgid "Posts from what post type will be displayed in the select."
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:205
|
2535 |
msgid "Allowable Values"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:205
|
2539 |
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."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:206
|
2543 |
msgid "Error Message"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:206
|
2547 |
msgid "Set a custom error message that will be displayed to the user."
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:207
|
2551 |
msgid "Time Format"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:207
|
2555 |
msgid "Specify the time format."
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:208
|
2559 |
msgid "Google Maps API Key"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:208
|
2563 |
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."
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:213
|
2567 |
msgid "Default Latitude"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:214
|
2571 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:220
|
2575 |
msgid "Default Longitude"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:221
|
2579 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:227
|
2583 |
msgid "Default Zoom Level"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:228
|
2587 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:232
|
2591 |
msgid "Map Height"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:232
|
2595 |
msgid "The height of the map."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:233
|
2599 |
msgid "Default Content"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:233
|
2603 |
msgid "Default value of the textarea"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:234
|
2607 |
msgid "HTML Content"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:234
|
2611 |
msgid "Add your HTML (or text) content"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:235
|
2615 |
msgid "Phone Format"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:235
|
2619 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:235
|
2623 |
msgid "Eg. (###) ###-####"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:235
|
2627 |
msgid "Empty field won't check for correct phone number."
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:236
|
2631 |
msgid "Heading Tag"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:236
|
2635 |
msgid "Change heading field size on front-end forms"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:237
|
2639 |
msgid "Min Number Value"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:237
|
2643 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:237
|
2647 |
msgid "Leave it empty for no min value"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:238
|
2651 |
msgid "Max Number Value"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:238
|
2655 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:238
|
2659 |
msgid "Leave it empty for no max value"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:239
|
2663 |
msgid "Number Step Value"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:239
|
2667 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:239
|
2671 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:239
|
2675 |
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)"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:239
|
2679 |
msgid "Leave it empty for no restriction"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:240
|
2683 |
msgid "Whether the field is required or not"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:241
|
2687 |
msgid "Overwrite Existing"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:241
|
2691 |
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"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:247
|
2695 |
+
msgid "POIs Load Type"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:249
|
2699 |
+
msgid "POIs of the listed users (as filtered & paginated)"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:250
|
2703 |
+
msgid "POIs of all the users for the filter* (no pagination)"
|
2704 |
+
msgstr ""
|
2705 |
+
|
2706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:253
|
2707 |
+
msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
|
2708 |
+
msgstr ""
|
2709 |
+
|
2710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:260
|
2711 |
+
msgid "POI Bubble Info"
|
2712 |
+
msgstr ""
|
2713 |
+
|
2714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:263
|
2715 |
+
msgid "Select the attributes to be listed inside the POI bubble."
|
2716 |
+
msgstr ""
|
2717 |
+
|
2718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:274
|
2719 |
+
msgid "Number of Users per Map Iteration"
|
2720 |
+
msgstr ""
|
2721 |
+
|
2722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:275
|
2723 |
+
msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:283
|
2727 |
msgid "Form Field Properties"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:297
|
2731 |
msgid "Registration & Edit Profile Forms"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:317
|
2735 |
msgid "Usernames cannot be changed."
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:320, ../profile-builder-2.0/modules/user-listing/userlisting.php:825, ../profile-builder-2.0/modules/user-listing/userlisting.php:2318
|
2739 |
msgid "Nickname"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:321
|
2743 |
msgid "Display name publicly as"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:324, ../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:807, ../profile-builder-2.0/modules/user-listing/userlisting.php:2312
|
2747 |
msgid "Website"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:328
|
2751 |
msgid "AIM"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:329
|
2755 |
msgid "Yahoo IM"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:330
|
2759 |
msgid "Jabber / Google Talk"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:334, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:810, ../profile-builder-2.0/modules/user-listing/userlisting.php:2313
|
2763 |
msgid "Biographical Info"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:334
|
2767 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:335, ../profile-builder-2.0/front-end/recover.php:73, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:30
|
2771 |
msgid "Password"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:335
|
2775 |
msgid "Type your password."
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:336, ../profile-builder-2.0/front-end/recover.php:74
|
2779 |
msgid "Repeat Password"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:336
|
2783 |
msgid "Type your password again. "
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:338
|
2787 |
msgid "Blog Details"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:397
|
2791 |
msgid "Select a Country"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:398, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2795 |
msgid "Afghanistan"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:399, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2799 |
msgid "Aland Islands"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:400, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2803 |
msgid "Albania"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:401, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2807 |
msgid "Algeria"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:402, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2811 |
msgid "American Samoa"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:403, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2815 |
msgid "Andorra"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:404, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2819 |
msgid "Angola"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:405, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2823 |
msgid "Anguilla"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:406, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2827 |
msgid "Antarctica"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:407, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2831 |
msgid "Antigua and Barbuda"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:408, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2835 |
msgid "Argentina"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:409, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2839 |
msgid "Armenia"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:410, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2843 |
msgid "Aruba"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:411, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2847 |
msgid "Australia"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:412, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2851 |
msgid "Austria"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:413, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2855 |
msgid "Azerbaijan"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:414, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2859 |
msgid "Bahamas"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:415, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2863 |
msgid "Bahrain"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:416, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2867 |
msgid "Bangladesh"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:417, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2871 |
msgid "Barbados"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:418, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2875 |
msgid "Belarus"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:419, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2879 |
msgid "Belgium"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:420, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2883 |
msgid "Belize"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:421, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2887 |
msgid "Benin"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:422, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2891 |
msgid "Bermuda"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:423, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2895 |
msgid "Bhutan"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:424
|
2899 |
msgid "Bolivia"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:425
|
2903 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:426, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2907 |
msgid "Bosnia and Herzegovina"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:427, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2911 |
msgid "Botswana"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:428, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2915 |
msgid "Bouvet Island"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:429, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2919 |
msgid "Brazil"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:430, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2923 |
msgid "British Indian Ocean Territory"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:431
|
2927 |
msgid "British Virgin Islands"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:432
|
2931 |
msgid "Brunei"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:433, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2935 |
msgid "Bulgaria"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:434, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2939 |
msgid "Burkina Faso"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:435, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2943 |
msgid "Burundi"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:436, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2947 |
msgid "Cambodia"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:437, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2951 |
msgid "Cameroon"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:438, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2955 |
msgid "Canada"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:439
|
2959 |
msgid "Cape Verde"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:440, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2963 |
msgid "Cayman Islands"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:441, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2967 |
msgid "Central African Republic"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:442, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2971 |
msgid "Chad"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:443, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2975 |
msgid "Chile"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:444, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2979 |
msgid "China"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:445, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2983 |
msgid "Christmas Island"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:446
|
2987 |
msgid "Cocos Islands"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:447, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2991 |
msgid "Colombia"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:448, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2995 |
msgid "Comoros"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:449, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
2999 |
msgid "Cook Islands"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:450, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3003 |
msgid "Costa Rica"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:451, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3007 |
msgid "Croatia"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:452, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3011 |
msgid "Cuba"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:453, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3015 |
msgid "Curacao"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:454, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3019 |
msgid "Cyprus"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:455, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3023 |
msgid "Czech Republic"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:456
|
3027 |
msgid "Democratic Republic of the Congo"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:457, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3031 |
msgid "Denmark"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:458, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3035 |
msgid "Djibouti"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:459, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3039 |
msgid "Dominica"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:460, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3043 |
msgid "Dominican Republic"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:461
|
3047 |
msgid "East Timor"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:462, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3051 |
msgid "Ecuador"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:463, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3055 |
msgid "Egypt"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:464, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3059 |
msgid "El Salvador"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:465, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3063 |
msgid "Equatorial Guinea"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:466, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3067 |
msgid "Eritrea"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:467, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3071 |
msgid "Estonia"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:468, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3075 |
msgid "Ethiopia"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:469
|
3079 |
msgid "Falkland Islands"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:470, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3083 |
msgid "Faroe Islands"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:471, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3087 |
msgid "Fiji"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:472, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3091 |
msgid "Finland"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:473, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3095 |
msgid "France"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:474, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3099 |
msgid "French Guiana"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:475, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3103 |
msgid "French Polynesia"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:476, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3107 |
msgid "French Southern Territories"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:477, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3111 |
msgid "Gabon"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:478, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3115 |
msgid "Gambia"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:479, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3119 |
msgid "Georgia"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:480, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3123 |
msgid "Germany"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:481, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3127 |
msgid "Ghana"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:482, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3131 |
msgid "Gibraltar"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:483, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3135 |
msgid "Greece"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:484, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3139 |
msgid "Greenland"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:485, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3143 |
msgid "Grenada"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:486, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3147 |
msgid "Guadeloupe"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:487, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3151 |
msgid "Guam"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:488, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3155 |
msgid "Guatemala"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:489, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3159 |
msgid "Guernsey"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:490, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3163 |
msgid "Guinea"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:491, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3167 |
msgid "Guinea-Bissau"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:492, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3171 |
msgid "Guyana"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:493, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3175 |
msgid "Haiti"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:494, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3179 |
msgid "Heard Island and McDonald Islands"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:495, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3183 |
msgid "Honduras"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:496, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3187 |
msgid "Hong Kong"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:497, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3191 |
msgid "Hungary"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:498, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3195 |
msgid "Iceland"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:499, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3199 |
msgid "India"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:500, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3203 |
msgid "Indonesia"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:501
|
3207 |
msgid "Iran"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:502, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3211 |
msgid "Iraq"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:503, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3215 |
msgid "Ireland"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:504, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3219 |
msgid "Isle of Man"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:505, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3223 |
msgid "Israel"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:506, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3227 |
msgid "Italy"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:507
|
3231 |
msgid "Ivory Coast"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:508, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3235 |
msgid "Jamaica"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:509, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3239 |
msgid "Japan"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:510, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3243 |
msgid "Jersey"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:511, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3247 |
msgid "Jordan"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:512, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3251 |
msgid "Kazakhstan"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:513, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3255 |
msgid "Kenya"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:514, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3259 |
msgid "Kiribati"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:515
|
3263 |
msgid "Kosovo"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:516, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3267 |
msgid "Kuwait"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:517, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3271 |
msgid "Kyrgyzstan"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:518
|
3275 |
msgid "Laos"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:519, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3279 |
msgid "Latvia"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:520, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3283 |
msgid "Lebanon"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:521, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3287 |
msgid "Lesotho"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:522, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3291 |
msgid "Liberia"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:523, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3295 |
msgid "Libya"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:524, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3299 |
msgid "Liechtenstein"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:525, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3303 |
msgid "Lithuania"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:526, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3307 |
msgid "Luxembourg"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:527, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3311 |
msgid "Macao"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:528
|
3315 |
msgid "Macedonia"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:529, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3319 |
msgid "Madagascar"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:530, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3323 |
msgid "Malawi"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:531, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3327 |
msgid "Malaysia"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:532, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3331 |
msgid "Maldives"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:533, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3335 |
msgid "Mali"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:534, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3339 |
msgid "Malta"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:535, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3343 |
msgid "Marshall Islands"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:536, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3347 |
msgid "Martinique"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:537, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3351 |
msgid "Mauritania"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:538, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3355 |
msgid "Mauritius"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:539, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3359 |
msgid "Mayotte"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:540, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3363 |
msgid "Mexico"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:541
|
3367 |
msgid "Micronesia"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:542
|
3371 |
msgid "Moldova"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:543, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3375 |
msgid "Monaco"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:544, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3379 |
msgid "Mongolia"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:545, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3383 |
msgid "Montenegro"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:546, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3387 |
msgid "Montserrat"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:547, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3391 |
msgid "Morocco"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:548, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3395 |
msgid "Mozambique"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:549, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3399 |
msgid "Myanmar"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:550, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3403 |
msgid "Namibia"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:551, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3407 |
msgid "Nauru"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:552, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3411 |
msgid "Nepal"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:553, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3415 |
msgid "Netherlands"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:554, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3419 |
msgid "New Caledonia"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:555, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3423 |
msgid "New Zealand"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:556, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3427 |
msgid "Nicaragua"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:557, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3431 |
msgid "Niger"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:558, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3435 |
msgid "Nigeria"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:559, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3439 |
msgid "Niue"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:560, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3443 |
msgid "Norfolk Island"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:561
|
3447 |
msgid "North Korea"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:562, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3451 |
msgid "Northern Mariana Islands"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:563, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3455 |
msgid "Norway"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:564, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3459 |
msgid "Oman"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:565, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3463 |
msgid "Pakistan"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:566, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3467 |
msgid "Palau"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:567
|
3471 |
msgid "Palestinian Territory"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:568, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3475 |
msgid "Panama"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:569, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3479 |
msgid "Papua New Guinea"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:570, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3483 |
msgid "Paraguay"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:571, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3487 |
msgid "Peru"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:572, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3491 |
msgid "Philippines"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:573, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3495 |
msgid "Pitcairn"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:574, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3499 |
msgid "Poland"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:575, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3503 |
msgid "Portugal"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:576, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3507 |
msgid "Puerto Rico"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:577, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3511 |
msgid "Qatar"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:578
|
3515 |
msgid "Republic of the Congo"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:579, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3519 |
msgid "Reunion"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:580, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3523 |
msgid "Romania"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:581
|
3527 |
msgid "Russia"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:582, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3531 |
msgid "Rwanda"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:583, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3535 |
msgid "Saint Barthelemy"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:584
|
3539 |
msgid "Saint Helena"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:585, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3543 |
msgid "Saint Kitts and Nevis"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:586, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3547 |
msgid "Saint Lucia"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:587
|
3551 |
msgid "Saint Martin"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:588, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3555 |
msgid "Saint Pierre and Miquelon"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:589, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3559 |
msgid "Saint Vincent and the Grenadines"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:590, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3563 |
msgid "Samoa"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:591, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3567 |
msgid "San Marino"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:592, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3571 |
msgid "Sao Tome and Principe"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:593, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3575 |
msgid "Saudi Arabia"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:594, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3579 |
msgid "Senegal"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:595, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3583 |
msgid "Serbia"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:596, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3587 |
msgid "Seychelles"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:597, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3591 |
msgid "Sierra Leone"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:598, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3595 |
msgid "Singapore"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:599
|
3599 |
msgid "Sint Maarten"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:600, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3603 |
msgid "Slovakia"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:601, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3607 |
msgid "Slovenia"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:602, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3611 |
msgid "Solomon Islands"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:603, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3615 |
msgid "Somalia"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:604, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3619 |
msgid "South Africa"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:605, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3623 |
msgid "South Georgia and the South Sandwich Islands"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:606
|
3627 |
msgid "South Korea"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:607, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3631 |
msgid "South Sudan"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:608, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3635 |
msgid "Spain"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:609, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3639 |
msgid "Sri Lanka"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:610, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3643 |
msgid "Sudan"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:611, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3647 |
msgid "Suriname"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:612, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3651 |
msgid "Svalbard and Jan Mayen"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:613, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3655 |
msgid "Swaziland"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:614, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3659 |
msgid "Sweden"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:615, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3663 |
msgid "Switzerland"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:616
|
3667 |
msgid "Syria"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:617
|
3671 |
msgid "Taiwan"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:618, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3675 |
msgid "Tajikistan"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:619
|
3679 |
msgid "Tanzania"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:620, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3683 |
msgid "Thailand"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:621, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3687 |
msgid "Togo"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:622, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3691 |
msgid "Tokelau"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:623, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3695 |
msgid "Tonga"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:624, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3699 |
msgid "Trinidad and Tobago"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:625, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3703 |
msgid "Tunisia"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:626, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3707 |
msgid "Turkey"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:627, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3711 |
msgid "Turkmenistan"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:628, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3715 |
msgid "Turks and Caicos Islands"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:629, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3719 |
msgid "Tuvalu"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:630
|
3723 |
msgid "U.S. Virgin Islands"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:631, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3727 |
msgid "Uganda"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:632, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3731 |
msgid "Ukraine"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:633, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3735 |
msgid "United Arab Emirates"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:634, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3739 |
msgid "United Kingdom"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:635, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3743 |
msgid "United States"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:636, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3747 |
msgid "United States Minor Outlying Islands"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:637, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3751 |
msgid "Uruguay"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:638, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3755 |
msgid "Uzbekistan"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:639, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3759 |
msgid "Vanuatu"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:640
|
3763 |
msgid "Vatican"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:641
|
3767 |
msgid "Venezuela"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:642
|
3771 |
msgid "Vietnam"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:643, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3775 |
msgid "Wallis and Futuna"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:644, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3779 |
msgid "Western Sahara"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:645, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3783 |
msgid "Yemen"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:646, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3787 |
msgid "Zambia"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:647, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
3791 |
msgid "Zimbabwe"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:680
|
3795 |
msgid "Albania Lek"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:681
|
3799 |
msgid "Afghanistan Afghani"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:682
|
3803 |
msgid "Argentina Peso"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:684
|
3807 |
msgid "Australia Dollar"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:685
|
3811 |
msgid "Azerbaijan New Manat"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:686
|
3815 |
msgid "Bahamas Dollar"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:687
|
3819 |
msgid "Barbados Dollar"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:688
|
3823 |
msgid "Bangladeshi taka"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:689
|
3827 |
msgid "Belarus Ruble"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:690
|
3831 |
msgid "Belize Dollar"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:691
|
3835 |
msgid "Bermuda Dollar"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:692
|
3839 |
msgid "Bolivia Boliviano"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:693
|
3843 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:694
|
3847 |
msgid "Botswana Pula"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:695
|
3851 |
msgid "Bulgaria Lev"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:696
|
3855 |
msgid "Brazil Real"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:697
|
3859 |
msgid "Brunei Darussalam Dollar"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:698
|
3863 |
msgid "Cambodia Riel"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:699
|
3867 |
msgid "Canada Dollar"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:700
|
3871 |
msgid "Cayman Islands Dollar"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:701
|
3875 |
msgid "Chile Peso"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:702
|
3879 |
msgid "China Yuan Renminbi"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:703
|
3883 |
msgid "Colombia Peso"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:704
|
3887 |
msgid "Costa Rica Colon"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:705
|
3891 |
msgid "Croatia Kuna"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:706
|
3895 |
msgid "Cuba Peso"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:707
|
3899 |
msgid "Czech Republic Koruna"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:708
|
3903 |
msgid "Denmark Krone"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:709
|
3907 |
msgid "Dominican Republic Peso"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:710
|
3911 |
msgid "East Caribbean Dollar"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:711
|
3915 |
msgid "Egypt Pound"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:712
|
3919 |
msgid "El Salvador Colon"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:713
|
3923 |
msgid "Estonia Kroon"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:714
|
3927 |
msgid "Euro"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:715
|
3931 |
msgid "Falkland Islands (Malvinas) Pound"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:716
|
3935 |
msgid "Fiji Dollar"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:717
|
3939 |
msgid "Ghana Cedis"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:718
|
3943 |
msgid "Gibraltar Pound"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:719
|
3947 |
msgid "Guatemala Quetzal"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:720
|
3951 |
msgid "Guernsey Pound"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:721
|
3955 |
msgid "Guyana Dollar"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:722
|
3959 |
msgid "Honduras Lempira"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:723
|
3963 |
msgid "Hong Kong Dollar"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:724
|
3967 |
msgid "Hungary Forint"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:725
|
3971 |
msgid "Iceland Krona"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:726
|
3975 |
msgid "India Rupee"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:727
|
3979 |
msgid "Indonesia Rupiah"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:728
|
3983 |
msgid "Iran Rial"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:729
|
3987 |
msgid "Isle of Man Pound"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:730
|
3991 |
msgid "Israel Shekel"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:731
|
3995 |
msgid "Jamaica Dollar"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:732
|
3999 |
msgid "Japan Yen"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:733
|
4003 |
msgid "Jersey Pound"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:734
|
4007 |
msgid "Kazakhstan Tenge"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:735
|
4011 |
msgid "Korea (North) Won"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:736
|
4015 |
msgid "Korea (South) Won"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:737
|
4019 |
msgid "Kyrgyzstan Som"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:738
|
4023 |
msgid "Laos Kip"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:739
|
4027 |
msgid "Latvia Lat"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:740
|
4031 |
msgid "Lebanon Pound"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:741
|
4035 |
msgid "Liberia Dollar"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:742
|
4039 |
msgid "Lithuania Litas"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:743
|
4043 |
msgid "Macedonia Denar"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:744
|
4047 |
msgid "Malaysia Ringgit"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:745
|
4051 |
msgid "Mauritius Rupee"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:746
|
4055 |
msgid "Mexico Peso"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:747
|
4059 |
msgid "Mongolia Tughrik"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:748
|
4063 |
msgid "Mozambique Metical"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:749
|
4067 |
msgid "Namibia Dollar"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:750
|
4071 |
msgid "Nepal Rupee"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:751
|
4075 |
msgid "Netherlands Antilles Guilder"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:752
|
4079 |
msgid "New Zealand Dollar"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:753
|
4083 |
msgid "Nicaragua Cordoba"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:754
|
4087 |
msgid "Nigeria Naira"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:755
|
4091 |
msgid "Norway Krone"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:756
|
4095 |
msgid "Oman Rial"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:757
|
4099 |
msgid "Pakistan Rupee"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:758
|
4103 |
msgid "Panama Balboa"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:759
|
4107 |
msgid "Paraguay Guarani"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:760
|
4111 |
msgid "Peru Nuevo Sol"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:761
|
4115 |
msgid "Philippines Peso"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:762
|
4119 |
msgid "Poland Zloty"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:763
|
4123 |
msgid "Qatar Riyal"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:764
|
4127 |
msgid "Romania New Leu"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:765
|
4131 |
msgid "Russia Ruble"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:766
|
4135 |
msgid "Saint Helena Pound"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:767
|
4139 |
msgid "Saudi Arabia Riyal"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:768
|
4143 |
msgid "Serbia Dinar"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:769
|
4147 |
msgid "Seychelles Rupee"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:770
|
4151 |
msgid "Singapore Dollar"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:771
|
4155 |
msgid "Solomon Islands Dollar"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:772
|
4159 |
msgid "Somalia Shilling"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:773
|
4163 |
msgid "South Africa Rand"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:774
|
4167 |
msgid "Sri Lanka Rupee"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:775
|
4171 |
msgid "Sweden Krona"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:776
|
4175 |
msgid "Switzerland Franc"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:777
|
4179 |
msgid "Suriname Dollar"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:778
|
4183 |
msgid "Syria Pound"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:779
|
4187 |
msgid "Taiwan New Dollar"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:780
|
4191 |
msgid "Thailand Baht"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:781
|
4195 |
msgid "Trinidad and Tobago Dollar"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:782, ../profile-builder-2.0/admin/manage-fields.php:783
|
4199 |
msgid "Turkey Lira"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:784
|
4203 |
msgid "Tuvalu Dollar"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:785
|
4207 |
msgid "Ukraine Hryvna"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:786
|
4211 |
msgid "United Kingdom Pound"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:787
|
4215 |
msgid "Uganda Shilling"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:788
|
4219 |
msgid "US Dollar"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:789
|
4223 |
msgid "Uruguay Peso"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:790
|
4227 |
msgid "Uzbekistan Som"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:791
|
4231 |
msgid "Venezuela Bolivar"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:792
|
4235 |
msgid "Viet Nam Dong"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:793
|
4239 |
msgid "Yemen Rial"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:794
|
4243 |
msgid "Zimbabwe Dollar"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1097, ../profile-builder-2.0/admin/manage-fields.php:1254
|
4247 |
msgid ""
|
4248 |
"You must select a field\n"
|
4249 |
""
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1107
|
4253 |
msgid ""
|
4254 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4255 |
""
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1118
|
4259 |
msgid ""
|
4260 |
"The entered avatar size is not between 20 and 200\n"
|
4261 |
""
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1121
|
4265 |
msgid ""
|
4266 |
"The entered avatar size is not numerical\n"
|
4267 |
""
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1129
|
4271 |
msgid ""
|
4272 |
"The entered row number is not numerical\n"
|
4273 |
""
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1132
|
4277 |
msgid ""
|
4278 |
"You must enter a value for the row number\n"
|
4279 |
""
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1140
|
4283 |
msgid ""
|
4284 |
"You must enter the site key\n"
|
4285 |
""
|
4286 |
msgstr ""
|
4287 |
|
4288 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1142
|
4289 |
msgid ""
|
4290 |
"You must enter the secret key\n"
|
4291 |
""
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1153
|
4295 |
msgid ""
|
4296 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4297 |
""
|
4298 |
msgstr ""
|
4299 |
|
4300 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1156
|
4301 |
msgid ""
|
4302 |
"You must enter a value for the date-format\n"
|
4303 |
""
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1172
|
4307 |
msgid ""
|
4308 |
"The meta-name cannot be empty\n"
|
4309 |
""
|
4310 |
msgstr ""
|
4311 |
|
4312 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1184, ../profile-builder-2.0/admin/manage-fields.php:1192, ../profile-builder-2.0/admin/manage-fields.php:1203
|
4313 |
msgid ""
|
4314 |
"That meta-name is already in use\n"
|
4315 |
""
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1214
|
4319 |
msgid ""
|
4320 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4321 |
""
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1234
|
4325 |
msgid ""
|
4326 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4327 |
""
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1238
|
4331 |
msgid ""
|
4332 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4333 |
""
|
4334 |
msgstr ""
|
4335 |
|
4336 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1245
|
4337 |
msgid ""
|
4338 |
"Please select at least one user role\n"
|
4339 |
""
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1261
|
4343 |
msgid ""
|
4344 |
"That field is already added in this form\n"
|
4345 |
""
|
4346 |
msgstr ""
|
4347 |
|
4348 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1312
|
4349 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4350 |
msgstr ""
|
4351 |
|
4352 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1327
|
4353 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1336
|
4357 |
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."
|
4358 |
msgstr ""
|
4359 |
|
4360 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1338
|
4361 |
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."
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1435
|
4365 |
msgid "Search Location"
|
4366 |
msgstr ""
|
4367 |
|
4477 |
msgid "We recommend \"<a href=\"%s\" target=\"_blank\">Custom Profile Menus</a>\" addon if you need different menu items for logged in / logged out users."
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: ../profile-builder-2.0/admin/private-website.php:127, ../profile-builder-2.0/features/functions.php:767, includes/views/view-admin.php:47, includes/views/view-fields.php:275, includes/views/view-forms.php:321, includes/views/view-shortcodes.php:77, includes/views/view-userlisting.php:91, ../profile-builder-2.0/features/content-restriction/content-restriction.php:159, ../profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390, ../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:405
|
4481 |
msgid "Save Changes"
|
4482 |
msgstr ""
|
4483 |
|
4593 |
msgid "Incorrect phone number"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: ../profile-builder-2.0/features/functions.php:795, ../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:447
|
4597 |
msgid "Content"
|
4598 |
msgstr ""
|
4599 |
|
4649 |
msgid "You must be logged in to edit your profile."
|
4650 |
msgstr ""
|
4651 |
|
4652 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:265, ../profile-builder-2.0/front-end/login.php:479
|
4653 |
msgid "You are not allowed to do this."
|
4654 |
msgstr ""
|
4655 |
|
4656 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:322, ../profile-builder-2.0/front-end/class-formbuilder.php:329
|
4657 |
msgid "The account %1s has been successfully created!"
|
4658 |
msgstr ""
|
4659 |
|
4660 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:325, ../profile-builder-2.0/front-end/class-formbuilder.php:335
|
4661 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4662 |
msgstr ""
|
4663 |
|
4664 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:331
|
4665 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:354
|
4669 |
msgid "Your profile has been successfully updated!"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:365
|
4673 |
msgid "There was an error in the submitted form"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:422
|
4677 |
msgid "Add User"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:491
|
4681 |
msgid "Send these credentials via email."
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:687
|
4685 |
msgid "User to edit:"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:689
|
4689 |
msgid "Select User"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:703
|
4693 |
msgid "There are no other users to edit"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:721
|
4697 |
msgid "Something went wrong. Please try again!"
|
4698 |
msgstr ""
|
4699 |
|
4821 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
+
#: ../profile-builder-2.0/front-end/recover.php:266, ../profile-builder-2.0/front-end/default-fields/password/password.php:50
|
4825 |
msgid "The password must have the minimum length of %s characters"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
+
#: ../profile-builder-2.0/front-end/recover.php:270, ../profile-builder-2.0/front-end/default-fields/password/password.php:54
|
4829 |
msgid "The password must have a minimum strength of %s"
|
4830 |
msgstr ""
|
4831 |
|
5385 |
msgid "Approve"
|
5386 |
msgstr ""
|
5387 |
|
5388 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:167, ../profile-builder-2.0/modules/user-listing/userlisting.php:312, ../profile-builder-2.0/modules/user-listing/userlisting.php:798, ../profile-builder-2.0/modules/user-listing/userlisting.php:2315
|
5389 |
msgid "Firstname"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:168, ../profile-builder-2.0/modules/user-listing/userlisting.php:801, ../profile-builder-2.0/modules/user-listing/userlisting.php:2316
|
5393 |
msgid "Lastname"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
+
#: ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:170, ../profile-builder-2.0/features/roles-editor/roles-editor.php:255, ../profile-builder-2.0/modules/user-listing/userlisting.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:313, ../profile-builder-2.0/modules/user-listing/userlisting.php:828, ../profile-builder-2.0/modules/user-listing/userlisting.php:2320
|
5397 |
msgid "Role"
|
5398 |
msgstr ""
|
5399 |
|
6333 |
msgid "No Edit-profile Forms found in trash"
|
6334 |
msgstr ""
|
6335 |
|
6336 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:138, ../profile-builder-2.0/modules/user-listing/userlisting.php:2206
|
6337 |
msgid "Shortcode"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:159, ../profile-builder-2.0/modules/user-listing/userlisting.php:2227
|
6341 |
msgid "(no title)"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:178, ../profile-builder-2.0/modules/user-listing/userlisting.php:2247
|
6345 |
msgid "The shortcode will be available after you publish this form."
|
6346 |
msgstr ""
|
6347 |
|
6348 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:180, ../profile-builder-2.0/modules/user-listing/userlisting.php:2249
|
6349 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6350 |
msgstr ""
|
6351 |
|
6352 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:184, ../profile-builder-2.0/modules/user-listing/userlisting.php:2253
|
6353 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6354 |
msgstr ""
|
6355 |
|
6356 |
+
#: ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:190, ../profile-builder-2.0/modules/user-listing/userlisting.php:2286
|
6357 |
msgid "Form Shortcode"
|
6358 |
msgstr ""
|
6359 |
|
6469 |
msgid "Are you sure you want to delete this?"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
+
#: ../profile-builder-2.0/modules/user-listing/one-map-listing.php:511
|
6473 |
+
msgid "Please wait while the pins are loading..."
|
6474 |
+
msgstr ""
|
6475 |
+
|
6476 |
+
#: ../profile-builder-2.0/modules/user-listing/one-map-listing.php:624
|
6477 |
+
msgid "The API Key was not provided."
|
6478 |
+
msgstr ""
|
6479 |
+
|
6480 |
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:14
|
6481 |
msgid "Add new User Listing"
|
6482 |
msgstr ""
|
6509 |
msgid "Display name as"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:161, ../profile-builder-2.0/modules/user-listing/userlisting.php:2314
|
6513 |
msgid "Registration Date"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:162, ../profile-builder-2.0/modules/user-listing/userlisting.php:2319
|
6517 |
msgid "Number of Posts"
|
6518 |
msgstr ""
|
6519 |
|
6537 |
msgid "Sort Tags"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:222, ../profile-builder-2.0/modules/user-listing/userlisting.php:261
|
6541 |
msgid "Extra Functions"
|
6542 |
msgstr ""
|
6543 |
|
6549 |
msgid "Search all Fields"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:227, ../profile-builder-2.0/modules/user-listing/userlisting.php:2401
|
6553 |
msgid "Faceted Menus"
|
6554 |
msgstr ""
|
6555 |
|
6557 |
msgid "User Count"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:235
|
6561 |
+
msgid "Map of listed users"
|
6562 |
+
msgstr ""
|
6563 |
+
|
6564 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:263
|
6565 |
msgid "Go Back Link"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:281
|
6569 |
msgid "All-userlisting Template"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:284
|
6573 |
msgid "Single-userlisting Template"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:310
|
6577 |
msgid "Avatar"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:314, ../profile-builder-2.0/modules/user-listing/userlisting.php:813
|
6581 |
msgid "Posts"
|
6582 |
msgstr ""
|
6583 |
|
6584 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:315, ../profile-builder-2.0/modules/user-listing/userlisting.php:795
|
6585 |
msgid "Sign-up Date"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:316
|
6589 |
msgid "More"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:410
|
6593 |
msgid "You do not have permission to view this user list."
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:423
|
6597 |
msgid "You do not have the required user role to view this user list."
|
6598 |
msgstr ""
|
6599 |
|
6600 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:447
|
6601 |
msgid "User not found"
|
6602 |
msgstr ""
|
6603 |
|
6604 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:789
|
6605 |
msgid "First/Lastname"
|
6606 |
msgstr ""
|
6607 |
|
6608 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:804, ../profile-builder-2.0/modules/user-listing/userlisting.php:2317
|
6609 |
msgid "Display Name"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:816, ../profile-builder-2.0/modules/user-listing/userlisting.php:2324
|
6613 |
msgid "Aim"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:819, ../profile-builder-2.0/modules/user-listing/userlisting.php:2325
|
6617 |
msgid "Yim"
|
6618 |
msgstr ""
|
6619 |
|
6620 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:822, ../profile-builder-2.0/modules/user-listing/userlisting.php:2326
|
6621 |
msgid "Jabber"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1100, ../profile-builder-2.0/modules/user-listing/userlisting.php:1569, ../profile-builder-2.0/modules/user-listing/userlisting.php:2041, ../profile-builder-2.0/modules/user-listing/userlisting.php:2521
|
6625 |
msgid "Search Users by All Fields"
|
6626 |
msgstr ""
|
6627 |
|
6628 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1369
|
6629 |
msgid "Click here to see more information about this user"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1369, ../profile-builder-2.0/modules/user-listing/userlisting.php:1369
|
6633 |
msgid "More..."
|
6634 |
msgstr ""
|
6635 |
|
6636 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1372
|
6637 |
msgid "Click here to see more information about this user."
|
6638 |
msgstr ""
|
6639 |
|
6640 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1399
|
6641 |
msgid "View Map"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1523, ../profile-builder-2.0/modules/user-listing/userlisting.php:1526
|
6645 |
msgid "Click here to go back"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1523, ../profile-builder-2.0/modules/user-listing/userlisting.php:1523
|
6649 |
msgid "Back"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1556
|
6653 |
msgid "«« First"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1557
|
6657 |
msgid "« Prev"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1558
|
6661 |
msgid "Next » "
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1559
|
6665 |
msgid "Last »»"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1588
|
6669 |
msgid "You don't have any pagination settings on this userlisting!"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1637
|
6673 |
msgid "Show All"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1711
|
6677 |
msgid "Choose..."
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1800
|
6681 |
msgid "No options available"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:1949
|
6685 |
msgid "Remove All Filters"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2058
|
6689 |
msgid "Search"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2059
|
6693 |
msgid "Clear Results"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2256, ../profile-builder-2.0/modules/user-listing/userlisting.php:2260
|
6697 |
msgid "Extra shortcode parameters"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2258
|
6701 |
msgid "View all extra shortcode parameters"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2263
|
6705 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2264
|
6709 |
msgid "Example:"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2266
|
6713 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2272
|
6717 |
msgid "displays only the users that you specified the user_id for"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2278
|
6721 |
msgid "displays all users except the ones you specified the user_id for"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2341
|
6725 |
msgid "Random (very slow on large databases > 10K user)"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2344
|
6729 |
msgid "Ascending"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2345
|
6733 |
msgid "Descending"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
|
6737 |
msgid "Roles to Display"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2353
|
6741 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
|
6745 |
msgid "Number of Users/Page"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2354
|
6749 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
|
6753 |
msgid "Default Sorting Criteria"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2355
|
6757 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2356
|
6761 |
msgid "Default Sorting Order"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2356
|
6765 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2357
|
6769 |
msgid "Avatar Size (All-userlisting)"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2357
|
6773 |
msgid "Set the avatar size on the all-userlisting only"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2358
|
6777 |
msgid "Avatar Size (Single-userlisting)"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2358
|
6781 |
msgid "Set the avatar size on the single-userlisting only"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2359
|
6785 |
msgid "Visible only to logged in users?"
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2359
|
6789 |
msgid "The userlisting will only be visible only to the logged in users"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2360
|
6793 |
msgid "Visible to following Roles"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2360
|
6797 |
msgid "The userlisting will only be visible to the following roles"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2366
|
6801 |
msgid "Userlisting Settings"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2391
|
6805 |
msgid "Label"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2391
|
6809 |
msgid "Choose the facet name that appears on the frontend"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2392
|
6813 |
msgid "Facet Type"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2392
|
6817 |
msgid "Choose the facet menu type"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2393
|
6821 |
msgid "Facet Meta"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2393
|
6825 |
msgid "Choose the meta field for the facet menu"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2394
|
6829 |
msgid "Behaviour"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2394
|
6833 |
msgid "Narrow the results"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2394
|
6837 |
msgid "Expand the results"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2394
|
6841 |
msgid "Choose how multiple selections affect the results"
|
6842 |
msgstr ""
|
6843 |
|
6844 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2395
|
6845 |
msgid "Visible choices"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2395
|
6849 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2420
|
6853 |
msgid "Search Fields"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2420
|
6857 |
msgid "Choose the fields in which the Search Field will look in"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2425
|
6861 |
msgid "Search Settings"
|
6862 |
msgstr ""
|
6863 |
|
6864 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2497
|
6865 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6866 |
msgstr ""
|
6867 |
|
6868 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2497
|
6869 |
msgid "You can find it in the Profile Builder menu."
|
6870 |
msgstr ""
|
6871 |
|
6872 |
+
#: ../profile-builder-2.0/modules/user-listing/userlisting.php:2660
|
6873 |
msgid "No results found!"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
+
#: ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:541, ../profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:545
|
6877 |
msgid "Delete this item"
|
6878 |
msgstr ""
|
6879 |
|
6921 |
msgid "This email is already in use."
|
6922 |
msgstr ""
|
6923 |
|
6924 |
+
#: ../profile-builder-2.0/front-end/default-fields/gdpr-delete/gdpr-delete.php:31
|
6925 |
+
msgid "Type %s to confirm deleting your account and all data associated with it:"
|
6926 |
+
msgstr ""
|
6927 |
+
|
6928 |
+
#: ../profile-builder-2.0/front-end/default-fields/gdpr-delete/gdpr-delete.php:32
|
6929 |
+
msgid "You did not type %s. Try again!"
|
6930 |
+
msgstr ""
|
6931 |
+
|
6932 |
#: ../profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37, ../profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
|
6933 |
msgid "The passwords do not match"
|
6934 |
msgstr ""
|