Version Description
- Change single post redirect hook to template_redirect which runs only in frontend for content restriction
- Modified the edit other user dropdown on edit profile forms for administrators
Download this release
Release Info
| Developer | madalin.ungureanu |
| Plugin | |
| Version | 2.9.2 |
| Comparing to | |
| See all releases | |
Code changes from version 2.9.1 to 2.9.2
- features/content-restriction/content-restriction-functions.php +2 -2
- front-end/class-formbuilder.php +6 -2
- index.php +2 -2
- readme.txt +5 -1
- translation/profile-builder.catalog.php +94 -9
- translation/profile-builder.pot +958 -618
features/content-restriction/content-restriction-functions.php
CHANGED
|
@@ -172,7 +172,7 @@ function wppb_content_restriction_post_redirect() {
|
|
| 172 |
exit;
|
| 173 |
|
| 174 |
}
|
| 175 |
-
add_action( '
|
| 176 |
|
| 177 |
/* Function that searches and replaces merge tags with their values */
|
| 178 |
function wppb_content_restriction_merge_tags( $text, $user_info, $post_id = 0 ) {
|
|
@@ -302,4 +302,4 @@ function wppb_content_restriction_shortcode( $atts, $content = null ) {
|
|
| 302 |
}
|
| 303 |
|
| 304 |
}
|
| 305 |
-
add_shortcode( 'wppb-restrict', 'wppb_content_restriction_shortcode' );
|
| 172 |
exit;
|
| 173 |
|
| 174 |
}
|
| 175 |
+
add_action( 'template_redirect', 'wppb_content_restriction_post_redirect' );
|
| 176 |
|
| 177 |
/* Function that searches and replaces merge tags with their values */
|
| 178 |
function wppb_content_restriction_merge_tags( $text, $user_info, $post_id = 0 ) {
|
| 302 |
}
|
| 303 |
|
| 304 |
}
|
| 305 |
+
add_shortcode( 'wppb-restrict', 'wppb_content_restriction_shortcode' );
|
front-end/class-formbuilder.php
CHANGED
|
@@ -680,22 +680,26 @@ class Profile_Builder_Form_Creator{
|
|
| 680 |
<p class="wppb-form-field">
|
| 681 |
<label for="edit_user"><?php _e('User to edit:', 'profile-builder') ?></label>
|
| 682 |
<select id="wppb-user-to-edit" class="wppb-user-to-edit" name="edit_user">
|
|
|
|
| 683 |
<?php
|
| 684 |
foreach( $users as $user ){
|
| 685 |
?>
|
| 686 |
-
<option value="<?php echo $user->ID; ?>" <?php selected( $selected, $user->ID ); ?>><?php echo $user->display_name; ?></option>
|
| 687 |
<?php
|
| 688 |
}
|
| 689 |
?>
|
| 690 |
</select>
|
| 691 |
</p>
|
| 692 |
<script type="text/javascript">jQuery('#wppb-user-to-edit').change(function () {
|
| 693 |
-
window.location.href =
|
| 694 |
});
|
| 695 |
jQuery(function(){jQuery('.wppb-user-to-edit').select2(); })</script>
|
| 696 |
</form>
|
| 697 |
<?php
|
| 698 |
}
|
|
|
|
|
|
|
|
|
|
| 699 |
}
|
| 700 |
|
| 701 |
/**
|
| 680 |
<p class="wppb-form-field">
|
| 681 |
<label for="edit_user"><?php _e('User to edit:', 'profile-builder') ?></label>
|
| 682 |
<select id="wppb-user-to-edit" class="wppb-user-to-edit" name="edit_user">
|
| 683 |
+
<option value=""><?php echo __( 'Select User', 'profile-builder' ); ?></option>
|
| 684 |
<?php
|
| 685 |
foreach( $users as $user ){
|
| 686 |
?>
|
| 687 |
+
<option value="<?php echo esc_url_raw( add_query_arg( array( 'edit_user' => $user->ID ) ) ); ?>" <?php selected( $selected, $user->ID ); ?>><?php echo $user->display_name; ?></option>
|
| 688 |
<?php
|
| 689 |
}
|
| 690 |
?>
|
| 691 |
</select>
|
| 692 |
</p>
|
| 693 |
<script type="text/javascript">jQuery('#wppb-user-to-edit').change(function () {
|
| 694 |
+
window.location.href = jQuery(this).val();
|
| 695 |
});
|
| 696 |
jQuery(function(){jQuery('.wppb-user-to-edit').select2(); })</script>
|
| 697 |
</form>
|
| 698 |
<?php
|
| 699 |
}
|
| 700 |
+
else{
|
| 701 |
+
echo '<p id="wppb-no-other-users-to-edit">'. apply_filters( 'wppb_no_users_to_edit_message', __( 'There are no other users to edit', 'profile-builder' ) ) .'</p>';
|
| 702 |
+
}
|
| 703 |
}
|
| 704 |
|
| 705 |
/**
|
index.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Profile Builder
|
| 4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
| 5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
| 6 |
-
Version: 2.9.
|
| 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', '2.9.
|
| 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: 2.9.2
|
| 7 |
Author: Cozmoslabs
|
| 8 |
Author URI: https://www.cozmoslabs.com/
|
| 9 |
Text Domain: profile-builder
|
| 75 |
*
|
| 76 |
*
|
| 77 |
*/
|
| 78 |
+
define('PROFILE_BUILDER_VERSION', '2.9.2' );
|
| 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
|
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
| 4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
| 5 |
Requires at least: 3.1
|
| 6 |
Tested up to: 4.9.8
|
| 7 |
-
Stable tag: 2.9.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -167,6 +167,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
| 167 |
12. Role Editor
|
| 168 |
|
| 169 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
= 2.9.1 =
|
| 171 |
* Rewrote login errors so they can be translated easily
|
| 172 |
* Extended the send credentials email so there is a bit more info like the link to the website
|
| 4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
|
| 5 |
Requires at least: 3.1
|
| 6 |
Tested up to: 4.9.8
|
| 7 |
+
Stable tag: 2.9.2
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 167 |
12. Role Editor
|
| 168 |
|
| 169 |
== Changelog ==
|
| 170 |
+
= 2.9.2 =
|
| 171 |
+
* Change single post redirect hook to template_redirect which runs only in frontend for content restriction
|
| 172 |
+
* Modified the edit other user dropdown on edit profile forms for administrators
|
| 173 |
+
|
| 174 |
= 2.9.1 =
|
| 175 |
* Rewrote login errors so they can be translated easily
|
| 176 |
* Extended the send credentials email so there is a bit more info like the link to the website
|
translation/profile-builder.catalog.php
CHANGED
|
@@ -93,6 +93,14 @@
|
|
| 93 |
<?php __("iFrame Size", "profile-builder"); ?>
|
| 94 |
<?php __("Height (px)", "profile-builder"); ?>
|
| 95 |
<?php __("Width (px)", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
<?php __("The email confirmation does not match your email address.", "profile-builder"); ?>
|
| 97 |
<?php __("Visibility", "profile-builder"); ?>
|
| 98 |
<?php __("<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
|
|
@@ -194,7 +202,6 @@
|
|
| 194 |
<?php __("Unlink Accounts (Edit Profile)", "profile-builder"); ?>
|
| 195 |
<?php __("This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page.", "profile-builder"); ?>
|
| 196 |
<?php __("Default Social Connect CSS in the Front-end", "profile-builder"); ?>
|
| 197 |
-
<?php __("Settings", "profile-builder"); ?>
|
| 198 |
<?php __("Help", "profile-builder"); ?>
|
| 199 |
<?php __("Display Social Connect buttons:", "profile-builder"); ?>
|
| 200 |
<?php __("You have successfully unlinked %% from your account.", "profile-builder"); ?>
|
|
@@ -437,8 +444,8 @@
|
|
| 437 |
<?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
|
| 438 |
<?php __("View Profile Builder documentation", "profile-builder"); ?>
|
| 439 |
<?php __("Docs", "profile-builder"); ?>
|
| 440 |
-
<?php __("
|
| 441 |
-
<?php __("
|
| 442 |
<?php __("Dismiss this notice.", "profile-builder"); ?>
|
| 443 |
<?php __("Basic Information", "profile-builder"); ?>
|
| 444 |
<?php __("<strong>Profile Builder </strong> %s", "profile-builder"); ?>
|
|
@@ -1139,15 +1146,16 @@
|
|
| 1139 |
<?php __("Add User", "profile-builder"); ?>
|
| 1140 |
<?php __("Send these credentials via email.", "profile-builder"); ?>
|
| 1141 |
<?php __("User to edit:", "profile-builder"); ?>
|
|
|
|
|
|
|
| 1142 |
<?php __("Something went wrong. Please try again!", "profile-builder"); ?>
|
| 1143 |
<?php __("ERROR", "profile-builder"); ?>
|
| 1144 |
<?php __("The password you entered is incorrect.", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
| 1145 |
<?php __("Password Lost and Found.", "profile-builder"); ?>
|
| 1146 |
<?php __("Lost your password", "profile-builder"); ?>
|
| 1147 |
-
<?php __("Invalid username.", "profile-builder"); ?>
|
| 1148 |
-
<?php __("username", "profile-builder"); ?>
|
| 1149 |
-
<?php __("email", "profile-builder"); ?>
|
| 1150 |
-
<?php __("username or email", "profile-builder"); ?>
|
| 1151 |
<?php __("Both fields are empty.", "profile-builder"); ?>
|
| 1152 |
<?php __("Username or Email", "profile-builder"); ?>
|
| 1153 |
<?php __("Lost your password?", "profile-builder"); ?>
|
|
@@ -1194,6 +1202,81 @@
|
|
| 1194 |
<?php __("Status", "profile-builder"); ?>
|
| 1195 |
<?php __("Active", "profile-builder"); ?>
|
| 1196 |
<?php __("Inactive", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1197 |
<?php __("Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
|
| 1198 |
<?php __("Admin Approval", "profile-builder"); ?>
|
| 1199 |
<?php __("Do you want to", "profile-builder"); ?>
|
|
@@ -1290,8 +1373,8 @@
|
|
| 1290 |
<?php __("New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>", "profile-builder"); ?>
|
| 1291 |
<?php __("[%1$s] Your new account information", "profile-builder"); ?>
|
| 1292 |
<?php __("Your selected password at signup", "profile-builder"); ?>
|
| 1293 |
-
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is:%2$s", "profile-builder"); ?>
|
| 1294 |
-
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password
|
| 1295 |
<?php __("The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!", "profile-builder"); ?>
|
| 1296 |
<?php __("This login widget lets you add a login form in the sidebar.", "profile-builder"); ?>
|
| 1297 |
<?php __("Profile Builder Login Widget", "profile-builder"); ?>
|
|
@@ -1377,6 +1460,7 @@
|
|
| 1377 |
<?php __("Common Settings", "profile-builder"); ?>
|
| 1378 |
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n", "profile-builder"); ?>
|
| 1379 |
<?php __("Email Subject", "profile-builder"); ?>
|
|
|
|
| 1380 |
<?php __("Default Registration & Registration with Email Confirmation", "profile-builder"); ?>
|
| 1381 |
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n<p>The Admin Approval feature was activated at the time of registration,\nso please remember that you need to approve this user before he/she can log in!</p>", "profile-builder"); ?>
|
| 1382 |
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
|
@@ -1589,6 +1673,7 @@
|
|
| 1589 |
<?php __("This username is invalid because it uses illegal characters.", "profile-builder"); ?>
|
| 1590 |
<?php __("Please enter a valid username.", "profile-builder"); ?>
|
| 1591 |
<?php __("This username is already reserved to be used soon.", "profile-builder"); ?>
|
|
|
|
| 1592 |
<?php __("Please add the Google Maps API key for this field.", "profile-builder"); ?>
|
| 1593 |
<?php __("Something went wrong. Please try again.", "profile-builder"); ?>
|
| 1594 |
<?php __("Please enter numbers only", "profile-builder"); ?>
|
| 93 |
<?php __("iFrame Size", "profile-builder"); ?>
|
| 94 |
<?php __("Height (px)", "profile-builder"); ?>
|
| 95 |
<?php __("Width (px)", "profile-builder"); ?>
|
| 96 |
+
<?php __("Forms", "profile-builder"); ?>
|
| 97 |
+
<?php __("Fields", "profile-builder"); ?>
|
| 98 |
+
<?php __("Emails", "profile-builder"); ?>
|
| 99 |
+
<?php __("Userlisting", "profile-builder"); ?>
|
| 100 |
+
<?php __("Shortcodes", "profile-builder"); ?>
|
| 101 |
+
<?php __("Customization Toolbox", "profile-builder"); ?>
|
| 102 |
+
<?php __("Toolbox", "profile-builder"); ?>
|
| 103 |
+
<?php __("Settings", "profile-builder"); ?>
|
| 104 |
<?php __("The email confirmation does not match your email address.", "profile-builder"); ?>
|
| 105 |
<?php __("Visibility", "profile-builder"); ?>
|
| 106 |
<?php __("<strong>Admin Only</strong> field is visible only for administrators. <strong>User Locked</strong> field is visible for both administrators and users, but only administrators have the capability to edit it.", "profile-builder"); ?>
|
| 202 |
<?php __("Unlink Accounts (Edit Profile)", "profile-builder"); ?>
|
| 203 |
<?php __("This option will display linked social platforms to users accounts and will allow to easily unlink them in Edit Profile page.", "profile-builder"); ?>
|
| 204 |
<?php __("Default Social Connect CSS in the Front-end", "profile-builder"); ?>
|
|
|
|
| 205 |
<?php __("Help", "profile-builder"); ?>
|
| 206 |
<?php __("Display Social Connect buttons:", "profile-builder"); ?>
|
| 207 |
<?php __("You have successfully unlinked %% from your account.", "profile-builder"); ?>
|
| 444 |
<?php __("If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. ", "profile-builder"); ?>
|
| 445 |
<?php __("View Profile Builder documentation", "profile-builder"); ?>
|
| 446 |
<?php __("Docs", "profile-builder"); ?>
|
| 447 |
+
<?php __("Check out the Customization Toolbox add-on which packs the most popular customization requests from Profile Builder.", "profile-builder"); ?>
|
| 448 |
+
<?php __("See details", "profile-builder"); ?>
|
| 449 |
<?php __("Dismiss this notice.", "profile-builder"); ?>
|
| 450 |
<?php __("Basic Information", "profile-builder"); ?>
|
| 451 |
<?php __("<strong>Profile Builder </strong> %s", "profile-builder"); ?>
|
| 1146 |
<?php __("Add User", "profile-builder"); ?>
|
| 1147 |
<?php __("Send these credentials via email.", "profile-builder"); ?>
|
| 1148 |
<?php __("User to edit:", "profile-builder"); ?>
|
| 1149 |
+
<?php __("Select User", "profile-builder"); ?>
|
| 1150 |
+
<?php __("There are no other users to edit", "profile-builder"); ?>
|
| 1151 |
<?php __("Something went wrong. Please try again!", "profile-builder"); ?>
|
| 1152 |
<?php __("ERROR", "profile-builder"); ?>
|
| 1153 |
<?php __("The password you entered is incorrect.", "profile-builder"); ?>
|
| 1154 |
+
<?php __("Invalid email.", "profile-builder"); ?>
|
| 1155 |
+
<?php __("Invalid username or email.", "profile-builder"); ?>
|
| 1156 |
+
<?php __("Invalid username.", "profile-builder"); ?>
|
| 1157 |
<?php __("Password Lost and Found.", "profile-builder"); ?>
|
| 1158 |
<?php __("Lost your password", "profile-builder"); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1159 |
<?php __("Both fields are empty.", "profile-builder"); ?>
|
| 1160 |
<?php __("Username or Email", "profile-builder"); ?>
|
| 1161 |
<?php __("Lost your password?", "profile-builder"); ?>
|
| 1202 |
<?php __("Status", "profile-builder"); ?>
|
| 1203 |
<?php __("Active", "profile-builder"); ?>
|
| 1204 |
<?php __("Inactive", "profile-builder"); ?>
|
| 1205 |
+
<?php __("Passwordless Login URL", "profile-builder"); ?>
|
| 1206 |
+
<?php __("$validation_message", "profile-builder"); ?>
|
| 1207 |
+
<?php __("Resend activation email", "profile-builder"); ?>
|
| 1208 |
+
<?php __("Enable Passwordless Login tag", "profile-builder"); ?>
|
| 1209 |
+
<?php __("Adds a new tag to the email customizers: <strong>{{{passwordless_login_url}}}</strong>.", "profile-builder"); ?>
|
| 1210 |
+
<?php __("You can include this in certain User emails to give your users the ability to login instantly.", "profile-builder"); ?>
|
| 1211 |
+
<?php __("This feature won't work at all if Admin Approval is enabled.", "profile-builder"); ?>
|
| 1212 |
+
<?php __("Automatically generate password for users", "profile-builder"); ?>
|
| 1213 |
+
<?php __("By checking this option, the password will be automatically generated and emailed to the user.", "profile-builder"); ?>
|
| 1214 |
+
<?php __("Datepicker starts on Monday", "profile-builder"); ?>
|
| 1215 |
+
<?php __("Will make all Datepickers use Monday as the first day of the week.", "profile-builder"); ?>
|
| 1216 |
+
<?php __("Hide Repeater Fields from the back-end profile page", "profile-builder"); ?>
|
| 1217 |
+
<?php __("Repeater Fields from Profile Builder do not work on the back-end user profile page, they are just displayed. If you want to remove them completely, you can use this option.", "profile-builder"); ?>
|
| 1218 |
+
<?php __("You will still be able to use them from a front-end edit profile form.", "profile-builder"); ?>
|
| 1219 |
+
<?php __("Always capitalize `First Name` and `Last Name` default fields", "profile-builder"); ?>
|
| 1220 |
+
<?php __("If you have these fields in your forms, they will be always saved with the first letter as uppercase.", "profile-builder"); ?>
|
| 1221 |
+
<?php __("eg.: <strong>Jhon Doe</strong> instead of <strong>jhon doe</strong>", "profile-builder"); ?>
|
| 1222 |
+
<?php __("Ban certain words from being used in fields", "profile-builder"); ?>
|
| 1223 |
+
<?php __("On", "profile-builder"); ?>
|
| 1224 |
+
<?php __("Affected fields:", "profile-builder"); ?>
|
| 1225 |
+
<?php __("Banned words:", "profile-builder"); ?>
|
| 1226 |
+
<?php __("Error message:", "profile-builder"); ?>
|
| 1227 |
+
<?php __("Allows you to define some words which users cannot use in their Username, First Name or Last Name when registering.", "profile-builder"); ?>
|
| 1228 |
+
<?php __("Allow or deny email domains from registering", "profile-builder"); ?>
|
| 1229 |
+
<?php __("Type:", "profile-builder"); ?>
|
| 1230 |
+
<?php __("Allow", "profile-builder"); ?>
|
| 1231 |
+
<?php __("Deny", "profile-builder"); ?>
|
| 1232 |
+
<?php __("Restricted domains:", "profile-builder"); ?>
|
| 1233 |
+
<?php __("This option lets you allow registrations only from certain domains or deny registrations from certain domains.", "profile-builder"); ?>
|
| 1234 |
+
<?php __("You should add only the domain in the list from above. eg.: gmail.com", "profile-builder"); ?>
|
| 1235 |
+
<?php __("Forms that should bypass Email Confirmation", "profile-builder"); ?>
|
| 1236 |
+
<?php __("Users registering through any of the selected forms will not need to confirm their email address.", "profile-builder"); ?>
|
| 1237 |
+
<?php __("Remember me checked by default", "profile-builder"); ?>
|
| 1238 |
+
<?php __("Check the `Remember Me` checkbox on Login forms, by default.", "profile-builder"); ?>
|
| 1239 |
+
<?php __("Remove validation from back-end profile page", "profile-builder"); ?>
|
| 1240 |
+
<?php __("When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute", "profile-builder"); ?>
|
| 1241 |
+
<?php __("Consider `Anyone can Register` WordPress option", "profile-builder"); ?>
|
| 1242 |
+
<?php __("setting", "profile-builder"); ?>
|
| 1243 |
+
<?php __("By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it.", "profile-builder"); ?>
|
| 1244 |
+
<?php __("Modify default Redirect Delay timer", "profile-builder"); ?>
|
| 1245 |
+
<?php __("This allows you to change the amount of seconds it takes for the <strong>`After Registration`</strong> redirect to happen.", "profile-builder"); ?>
|
| 1246 |
+
<?php __("The default is 3 seconds. Leave empty if you do not want to change it.", "profile-builder"); ?>
|
| 1247 |
+
<?php __("Save Admin Approval status in usermeta", "profile-builder"); ?>
|
| 1248 |
+
<?php __("By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user.", "profile-builder"); ?>
|
| 1249 |
+
<?php __("If you check this option, the status will also be saved in the `*_usermeta` table under the <strong>wppb_approval_status</strong> meta name.", "profile-builder"); ?>
|
| 1250 |
+
<?php __("Redirect `/author` page if user is not approved", "profile-builder"); ?>
|
| 1251 |
+
<?php __("By default, users placed in Admin Approval will not be able to login, but the Author pages will be toolboxessible.", "profile-builder"); ?>
|
| 1252 |
+
<?php __("Using this option you can redirect these pages, sending users who try to toolboxess them to your home page.", "profile-builder"); ?>
|
| 1253 |
+
<?php __("Save `Last Login` date in usermeta", "profile-builder"); ?>
|
| 1254 |
+
<?php __("By checking this option, each time a user logins, the date and time will be saved in the database.", "profile-builder"); ?>
|
| 1255 |
+
<?php __("The meta name for the field will be <strong>last_login_date</strong>.", "profile-builder"); ?>
|
| 1256 |
+
<?php __("You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manage-user-fields/#Manage_existing_custom_fields_with_Profile_Builder\" target=\"_blank\">create a field with this meta name</a> in Profile Builder to display it in the Userlisting or Edit Profile forms.", "profile-builder"); ?>
|
| 1257 |
+
<?php __("Save `Last Profile Update` date in usermeta", "profile-builder"); ?>
|
| 1258 |
+
<?php __("By checking this option, each time a modifies his profile the date and time will be saved in the database.", "profile-builder"); ?>
|
| 1259 |
+
<?php __("The meta name for the field will be <strong>last_profile_update_date</strong>.", "profile-builder"); ?>
|
| 1260 |
+
<?php __("Enable Compare shortcode", "profile-builder"); ?>
|
| 1261 |
+
<?php __("You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/compare-shortcode/\">this url</a>.", "profile-builder"); ?>
|
| 1262 |
+
<?php __("Enable Usermeta shortcode", "profile-builder"); ?>
|
| 1263 |
+
<?php __("You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/display-user-meta/\">this url</a>.", "profile-builder"); ?>
|
| 1264 |
+
<?php __("Enable Resend Activation Email shortcode", "profile-builder"); ?>
|
| 1265 |
+
<?php __("You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/resend-confirmation-email/\">this url</a>.", "profile-builder"); ?>
|
| 1266 |
+
<?php __("Enable Format Date shortcode", "profile-builder"); ?>
|
| 1267 |
+
<?php __("You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/format-date-shortcode/\">this url</a>.", "profile-builder"); ?>
|
| 1268 |
+
<?php __("Change placeholder text for Search box", "profile-builder"); ?>
|
| 1269 |
+
<?php __("This refers to the placeholder text from the <strong>{{{extra_search_all_fields}}}</strong> tag.", "profile-builder"); ?>
|
| 1270 |
+
<?php __("Default text is <strong>Search Users by All Fields</strong>, use this option to change it to something else. Leave empty if you do not want to change it.", "profile-builder"); ?>
|
| 1271 |
+
<?php __("Modify base URL for Single Userlisting", "profile-builder"); ?>
|
| 1272 |
+
<?php __("By default Single Userlisting URLs contain the word <strong>user</strong>. eg.: ", "profile-builder"); ?>
|
| 1273 |
+
<?php __("Using this option, you can change the word <strong>user</strong> to something else. Leave empty if you do not want to change it.", "profile-builder"); ?>
|
| 1274 |
+
<?php __("Make the Single Userlisting URLs work with user nicename", "profile-builder"); ?>
|
| 1275 |
+
<?php __("By default Single Userlisting URLs are generated using the users ID. eg.: ", "profile-builder"); ?>
|
| 1276 |
+
<?php __("With this option activated, the URLs will be generated using the users <strong>nicename</strong>.", "profile-builder"); ?>
|
| 1277 |
+
<?php __("Remove repetition counts from Faceted Menus", "profile-builder"); ?>
|
| 1278 |
+
<?php __("The number of users that share a particular value is shown for the Select and Checkbox facet types.", "profile-builder"); ?>
|
| 1279 |
+
<?php __("If you enable this option they will be hidden.", "profile-builder"); ?>
|
| 1280 |
<?php __("Your account has to be confirmed by an administrator before you can log in.", "profile-builder"); ?>
|
| 1281 |
<?php __("Admin Approval", "profile-builder"); ?>
|
| 1282 |
<?php __("Do you want to", "profile-builder"); ?>
|
| 1373 |
<?php __("New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>", "profile-builder"); ?>
|
| 1374 |
<?php __("[%1$s] Your new account information", "profile-builder"); ?>
|
| 1375 |
<?php __("Your selected password at signup", "profile-builder"); ?>
|
| 1376 |
+
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and the password you selected on registration.<br/><br/>Access your account: %3$s ", "profile-builder"); ?>
|
| 1377 |
+
<?php __("Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and the password: %3$s.<br/><br/>Access your account: %4$s ", "profile-builder"); ?>
|
| 1378 |
<?php __("The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!", "profile-builder"); ?>
|
| 1379 |
<?php __("This login widget lets you add a login form in the sidebar.", "profile-builder"); ?>
|
| 1380 |
<?php __("Profile Builder Login Widget", "profile-builder"); ?>
|
| 1460 |
<?php __("Common Settings", "profile-builder"); ?>
|
| 1461 |
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n", "profile-builder"); ?>
|
| 1462 |
<?php __("Email Subject", "profile-builder"); ?>
|
| 1463 |
+
<?php __("Enable email", "profile-builder"); ?>
|
| 1464 |
<?php __("Default Registration & Registration with Email Confirmation", "profile-builder"); ?>
|
| 1465 |
<?php __("<p>New subscriber on {{site_name}}.</p>\n<p>Username:{{username}}</p>\n<p>E-mail:{{user_email}}</p>\n<p>The Admin Approval feature was activated at the time of registration,\nso please remember that you need to approve this user before he/she can log in!</p>", "profile-builder"); ?>
|
| 1466 |
<?php __("Registration with Admin Approval", "profile-builder"); ?>
|
| 1673 |
<?php __("This username is invalid because it uses illegal characters.", "profile-builder"); ?>
|
| 1674 |
<?php __("Please enter a valid username.", "profile-builder"); ?>
|
| 1675 |
<?php __("This username is already reserved to be used soon.", "profile-builder"); ?>
|
| 1676 |
+
<?php __("You must enter a valid URL.", "profile-builder"); ?>
|
| 1677 |
<?php __("Please add the Google Maps API key for this field.", "profile-builder"); ?>
|
| 1678 |
<?php __("Something went wrong. Please try again.", "profile-builder"); ?>
|
| 1679 |
<?php __("Please enter numbers only", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
|
@@ -85,7 +85,7 @@ msgstr ""
|
|
| 85 |
msgid "Registration form:"
|
| 86 |
msgstr ""
|
| 87 |
|
| 88 |
-
#: ../pb-add-on-buddypress/buddypress-page.php:65, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 89 |
msgid "Default Registration"
|
| 90 |
msgstr ""
|
| 91 |
|
|
@@ -209,7 +209,7 @@ msgstr ""
|
|
| 209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
| 210 |
msgstr ""
|
| 211 |
|
| 212 |
-
#: ../pb-add-on-buddypress/index.php:511, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, ../profile-builder-2.0/admin/manage-fields.php:
|
| 213 |
msgid "Name"
|
| 214 |
msgstr ""
|
| 215 |
|
|
@@ -233,7 +233,7 @@ msgstr ""
|
|
| 233 |
msgid "Display name:"
|
| 234 |
msgstr ""
|
| 235 |
|
| 236 |
-
#: ../pb-add-on-buddypress/index.php:534, ../profile-builder-2.0/admin/manage-fields.php:
|
| 237 |
msgid "Contact Info"
|
| 238 |
msgstr ""
|
| 239 |
|
|
@@ -241,7 +241,7 @@ msgstr ""
|
|
| 241 |
msgid "Website:"
|
| 242 |
msgstr ""
|
| 243 |
|
| 244 |
-
#: ../pb-add-on-buddypress/index.php:541, ../profile-builder-2.0/admin/manage-fields.php:
|
| 245 |
msgid "About Yourself"
|
| 246 |
msgstr ""
|
| 247 |
|
|
@@ -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:420, ../profile-builder-2.0/front-end/login.php:
|
| 373 |
msgid "Register"
|
| 374 |
msgstr ""
|
| 375 |
|
|
@@ -389,6 +389,38 @@ msgstr ""
|
|
| 389 |
msgid "Width (px)"
|
| 390 |
msgstr ""
|
| 391 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 392 |
#: ../pb-add-on-email-confirmation-field/index.php:83
|
| 393 |
msgid "The email confirmation does not match your email address."
|
| 394 |
msgstr ""
|
|
@@ -421,11 +453,11 @@ msgstr ""
|
|
| 421 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
| 422 |
msgstr ""
|
| 423 |
|
| 424 |
-
#: ../pb-add-on-field-visibility/index.php:223, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:
|
| 425 |
msgid "Edit"
|
| 426 |
msgstr ""
|
| 427 |
|
| 428 |
-
#: ../pb-add-on-field-visibility/index.php:223, ../profile-builder-2.0/admin/manage-fields.php:
|
| 429 |
msgid "Delete"
|
| 430 |
msgstr ""
|
| 431 |
|
|
@@ -453,11 +485,11 @@ msgstr ""
|
|
| 453 |
msgid "You do not have the capabilities necessary to edit this field."
|
| 454 |
msgstr ""
|
| 455 |
|
| 456 |
-
#: ../pb-add-on-import-export/pbie-export.php:
|
| 457 |
msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
|
| 458 |
msgstr ""
|
| 459 |
|
| 460 |
-
#: ../pb-add-on-import-export/pbie-export.php:
|
| 461 |
msgid "Export"
|
| 462 |
msgstr ""
|
| 463 |
|
|
@@ -535,7 +567,7 @@ msgstr ""
|
|
| 535 |
msgid "You must select a label to edit!"
|
| 536 |
msgstr ""
|
| 537 |
|
| 538 |
-
#: ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:
|
| 539 |
msgid "Labels"
|
| 540 |
msgstr ""
|
| 541 |
|
|
@@ -653,7 +685,7 @@ msgstr ""
|
|
| 653 |
msgid "Replace labels with placeholders:"
|
| 654 |
msgstr ""
|
| 655 |
|
| 656 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:323, ../profile-builder-2.0/admin/general-settings.php: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, ../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:2339
|
| 657 |
msgid "Yes"
|
| 658 |
msgstr ""
|
| 659 |
|
|
@@ -797,10 +829,6 @@ msgstr ""
|
|
| 797 |
msgid "Default Social Connect CSS in the Front-end"
|
| 798 |
msgstr ""
|
| 799 |
|
| 800 |
-
#: ../pb-add-on-social-connect/index.php:236, ../profile-builder-2.0/admin/admin-functions.php:226, ../profile-builder-2.0/admin/general-settings.php:76, ../profile-builder-2.0/admin/general-settings.php:76
|
| 801 |
-
msgid "Settings"
|
| 802 |
-
msgstr ""
|
| 803 |
-
|
| 804 |
#: ../pb-add-on-social-connect/index.php:250
|
| 805 |
msgid "Help"
|
| 806 |
msgstr ""
|
|
@@ -913,11 +941,11 @@ msgstr ""
|
|
| 913 |
msgid "Country"
|
| 914 |
msgstr ""
|
| 915 |
|
| 916 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:
|
| 917 |
msgid "First Name"
|
| 918 |
msgstr ""
|
| 919 |
|
| 920 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:
|
| 921 |
msgid "Last Name"
|
| 922 |
msgstr ""
|
| 923 |
|
|
@@ -953,103 +981,103 @@ msgstr ""
|
|
| 953 |
msgid "Ship to a different address?"
|
| 954 |
msgstr ""
|
| 955 |
|
| 956 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 957 |
msgid "Billing Address"
|
| 958 |
msgstr ""
|
| 959 |
|
| 960 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 961 |
msgid "Displays customer billing fields in front-end. "
|
| 962 |
msgstr ""
|
| 963 |
|
| 964 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 965 |
msgid "Shipping Address"
|
| 966 |
msgstr ""
|
| 967 |
|
| 968 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 969 |
msgid "Displays customer shipping fields in front-end. "
|
| 970 |
msgstr ""
|
| 971 |
|
| 972 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 973 |
msgid "Address line 2"
|
| 974 |
msgstr ""
|
| 975 |
|
| 976 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 977 |
msgid "Billing Fields"
|
| 978 |
msgstr ""
|
| 979 |
|
| 980 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 981 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
| 982 |
msgstr ""
|
| 983 |
|
| 984 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 985 |
msgid "Billing Fields Order"
|
| 986 |
msgstr ""
|
| 987 |
|
| 988 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 989 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
| 990 |
msgstr ""
|
| 991 |
|
| 992 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 993 |
msgid "Billing Fields Name"
|
| 994 |
msgstr ""
|
| 995 |
|
| 996 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 997 |
msgid "Save the billing fields names"
|
| 998 |
msgstr ""
|
| 999 |
|
| 1000 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1001 |
msgid "Shipping Fields"
|
| 1002 |
msgstr ""
|
| 1003 |
|
| 1004 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1005 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
| 1006 |
msgstr ""
|
| 1007 |
|
| 1008 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1009 |
msgid "Shipping Fields Order"
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1013 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1017 |
msgid "Shipping Fields Name"
|
| 1018 |
msgstr ""
|
| 1019 |
|
| 1020 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1021 |
msgid "Save the shipping fields names"
|
| 1022 |
msgstr ""
|
| 1023 |
|
| 1024 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1025 |
msgid "Field Name"
|
| 1026 |
msgstr ""
|
| 1027 |
|
| 1028 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1029 |
msgid "Required"
|
| 1030 |
msgstr ""
|
| 1031 |
|
| 1032 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1033 |
msgid "Click to edit "
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1037 |
msgid "The email you entered is not a valid email address."
|
| 1038 |
msgstr ""
|
| 1039 |
|
| 1040 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1041 |
msgid "No options available. Please select one country."
|
| 1042 |
msgstr ""
|
| 1043 |
|
| 1044 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1045 |
msgid "Billing "
|
| 1046 |
msgstr ""
|
| 1047 |
|
| 1048 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1049 |
msgid "Shipping "
|
| 1050 |
msgstr ""
|
| 1051 |
|
| 1052 |
-
#: ../pb-add-on-woocommerce/index.php:
|
| 1053 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
| 1054 |
msgstr ""
|
| 1055 |
|
|
@@ -1295,47 +1323,47 @@ msgstr ""
|
|
| 1295 |
msgid "The Campaign Monitor API key is either missing or is invalid."
|
| 1296 |
msgstr ""
|
| 1297 |
|
| 1298 |
-
#: admin/manage-fields.php:29
|
| 1299 |
msgid "Communication Preferences"
|
| 1300 |
msgstr ""
|
| 1301 |
|
| 1302 |
-
#: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9, ../profile-builder-2.0/admin/manage-fields.php:
|
| 1303 |
msgid "E-mail"
|
| 1304 |
msgstr ""
|
| 1305 |
|
| 1306 |
-
#: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
|
| 1307 |
msgid "Telephone"
|
| 1308 |
msgstr ""
|
| 1309 |
|
| 1310 |
-
#: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
|
| 1311 |
msgid "SMS"
|
| 1312 |
msgstr ""
|
| 1313 |
|
| 1314 |
-
#: admin/manage-fields.php:29, front-end/gdpr-communication-preferences.php:9
|
| 1315 |
msgid "Post"
|
| 1316 |
msgstr ""
|
| 1317 |
|
| 1318 |
-
#: admin/manage-fields.php:29
|
| 1319 |
msgid "Select which communication preferences are available on your site ( drag and drop to re-order )"
|
| 1320 |
msgstr ""
|
| 1321 |
|
| 1322 |
-
#: admin/manage-fields.php:30
|
| 1323 |
msgid "Communication Preferences Order"
|
| 1324 |
msgstr ""
|
| 1325 |
|
| 1326 |
-
#: admin/manage-fields.php:30
|
| 1327 |
msgid "Save the communication preferences order"
|
| 1328 |
msgstr ""
|
| 1329 |
|
| 1330 |
-
#: front-end/gdpr-communication-preferences.php:44, ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:87, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:74, ../profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:46, ../profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45, ../profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40, ../profile-builder-2.0/front-end/extra-fields/input/input.php:30, ../profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34, ../profile-builder-2.0/front-end/extra-fields/map/map.php:51, ../profile-builder-2.0/front-end/extra-fields/number/number.php:30, ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:39, ../profile-builder-2.0/front-end/extra-fields/radio/radio.php:44, ../profile-builder-2.0/front-end/extra-fields/select/select.php:51, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:58, ../profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:47, ../profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49, ../profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30, ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:70, ../profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
| 1331 |
msgid "required"
|
| 1332 |
msgstr ""
|
| 1333 |
|
| 1334 |
-
#: front-end/gdpr-communication-preferences.php:68
|
| 1335 |
msgid "Date"
|
| 1336 |
msgstr ""
|
| 1337 |
|
| 1338 |
-
#: front-end/gdpr-communication-preferences.php:68
|
| 1339 |
msgid "Preference"
|
| 1340 |
msgstr ""
|
| 1341 |
|
|
@@ -1775,15 +1803,15 @@ msgstr ""
|
|
| 1775 |
msgid "Docs"
|
| 1776 |
msgstr ""
|
| 1777 |
|
| 1778 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:
|
| 1779 |
-
msgid "
|
| 1780 |
msgstr ""
|
| 1781 |
|
| 1782 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:
|
| 1783 |
-
msgid "
|
| 1784 |
msgstr ""
|
| 1785 |
|
| 1786 |
-
#: ../profile-builder-2.0/admin/admin-functions.php:
|
| 1787 |
msgid "Dismiss this notice."
|
| 1788 |
msgstr ""
|
| 1789 |
|
|
@@ -2223,11 +2251,11 @@ msgstr ""
|
|
| 2223 |
msgid "Username and Email"
|
| 2224 |
msgstr ""
|
| 2225 |
|
| 2226 |
-
#: ../profile-builder-2.0/admin/general-settings.php:249, ../profile-builder-2.0/admin/manage-fields.php:
|
| 2227 |
msgid "Username"
|
| 2228 |
msgstr ""
|
| 2229 |
|
| 2230 |
-
#: ../profile-builder-2.0/admin/general-settings.php:250, ../profile-builder-2.0/front-end/login.php:
|
| 2231 |
msgid "Email"
|
| 2232 |
msgstr ""
|
| 2233 |
|
|
@@ -2267,2037 +2295,2037 @@ msgstr ""
|
|
| 2267 |
msgid "Manage Form Fields"
|
| 2268 |
msgstr ""
|
| 2269 |
|
| 2270 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2271 |
msgid "Choose one of the supported field types"
|
| 2272 |
msgstr ""
|
| 2273 |
|
| 2274 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2275 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
| 2276 |
msgstr ""
|
| 2277 |
|
| 2278 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2279 |
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"
|
| 2280 |
msgstr ""
|
| 2281 |
|
| 2282 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2283 |
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"
|
| 2284 |
msgstr ""
|
| 2285 |
|
| 2286 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2287 |
msgid "Field Title"
|
| 2288 |
msgstr ""
|
| 2289 |
|
| 2290 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2291 |
msgid "Title of the field"
|
| 2292 |
msgstr ""
|
| 2293 |
|
| 2294 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2295 |
msgid "Field"
|
| 2296 |
msgstr ""
|
| 2297 |
|
| 2298 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2299 |
msgid "Meta-name"
|
| 2300 |
msgstr ""
|
| 2301 |
|
| 2302 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2303 |
msgid "ID"
|
| 2304 |
msgstr ""
|
| 2305 |
|
| 2306 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2307 |
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"
|
| 2308 |
msgstr ""
|
| 2309 |
|
| 2310 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2311 |
msgid "Description"
|
| 2312 |
msgstr ""
|
| 2313 |
|
| 2314 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2315 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
| 2316 |
msgstr ""
|
| 2317 |
|
| 2318 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2319 |
msgid "Row Count"
|
| 2320 |
msgstr ""
|
| 2321 |
|
| 2322 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2323 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
| 2324 |
msgstr ""
|
| 2325 |
|
| 2326 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2327 |
msgid "Allowed Image Extensions"
|
| 2328 |
msgstr ""
|
| 2329 |
|
| 2330 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2331 |
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 (.*)"
|
| 2332 |
msgstr ""
|
| 2333 |
|
| 2334 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2335 |
msgid "Allowed Upload Extensions"
|
| 2336 |
msgstr ""
|
| 2337 |
|
| 2338 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2339 |
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 (.*)"
|
| 2340 |
msgstr ""
|
| 2341 |
|
| 2342 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2343 |
msgid "Avatar Size"
|
| 2344 |
msgstr ""
|
| 2345 |
|
| 2346 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2347 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
| 2348 |
msgstr ""
|
| 2349 |
|
| 2350 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2351 |
msgid "Date-format"
|
| 2352 |
msgstr ""
|
| 2353 |
|
| 2354 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2355 |
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"
|
| 2356 |
msgstr ""
|
| 2357 |
|
| 2358 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2359 |
msgid "Terms of Agreement"
|
| 2360 |
msgstr ""
|
| 2361 |
|
| 2362 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2363 |
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>"
|
| 2364 |
msgstr ""
|
| 2365 |
|
| 2366 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2367 |
msgid "Options"
|
| 2368 |
msgstr ""
|
| 2369 |
|
| 2370 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2371 |
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"
|
| 2372 |
msgstr ""
|
| 2373 |
|
| 2374 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2375 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
| 2376 |
msgstr ""
|
| 2377 |
|
| 2378 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2379 |
msgid "reCAPTCHA Type"
|
| 2380 |
msgstr ""
|
| 2381 |
|
| 2382 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2383 |
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."
|
| 2384 |
msgstr ""
|
| 2385 |
|
| 2386 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2387 |
msgid "Site Key"
|
| 2388 |
msgstr ""
|
| 2389 |
|
| 2390 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2391 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
| 2392 |
msgstr ""
|
| 2393 |
|
| 2394 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2395 |
msgid "Secret Key"
|
| 2396 |
msgstr ""
|
| 2397 |
|
| 2398 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2399 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
| 2400 |
msgstr ""
|
| 2401 |
|
| 2402 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2403 |
msgid "Display on PB forms"
|
| 2404 |
msgstr ""
|
| 2405 |
|
| 2406 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2407 |
msgid "PB Login"
|
| 2408 |
msgstr ""
|
| 2409 |
|
| 2410 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2411 |
msgid "PB Register"
|
| 2412 |
msgstr ""
|
| 2413 |
|
| 2414 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2415 |
msgid "PB Recover Password"
|
| 2416 |
msgstr ""
|
| 2417 |
|
| 2418 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2419 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
| 2420 |
msgstr ""
|
| 2421 |
|
| 2422 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2423 |
msgid "Display on default WP forms"
|
| 2424 |
msgstr ""
|
| 2425 |
|
| 2426 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2427 |
msgid "Default WP Login"
|
| 2428 |
msgstr ""
|
| 2429 |
|
| 2430 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2431 |
msgid "Default WP Register"
|
| 2432 |
msgstr ""
|
| 2433 |
|
| 2434 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2435 |
msgid "Default WP Recover Password"
|
| 2436 |
msgstr ""
|
| 2437 |
|
| 2438 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2439 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
| 2440 |
msgstr ""
|
| 2441 |
|
| 2442 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2443 |
msgid "User Roles"
|
| 2444 |
msgstr ""
|
| 2445 |
|
| 2446 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2447 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
| 2448 |
msgstr ""
|
| 2449 |
|
| 2450 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2451 |
msgid "User Roles Order"
|
| 2452 |
msgstr ""
|
| 2453 |
|
| 2454 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2455 |
msgid "Save the user role order from the user roles checkboxes"
|
| 2456 |
msgstr ""
|
| 2457 |
|
| 2458 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2459 |
msgid "Default Value"
|
| 2460 |
msgstr ""
|
| 2461 |
|
| 2462 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2463 |
msgid "Default value of the field"
|
| 2464 |
msgstr ""
|
| 2465 |
|
| 2466 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2467 |
msgid "Default Option"
|
| 2468 |
msgstr ""
|
| 2469 |
|
| 2470 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2471 |
msgid "Specify the option which should be selected by default"
|
| 2472 |
msgstr ""
|
| 2473 |
|
| 2474 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2475 |
msgid "Default Option(s)"
|
| 2476 |
msgstr ""
|
| 2477 |
|
| 2478 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2479 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
| 2480 |
msgstr ""
|
| 2481 |
|
| 2482 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2483 |
msgid "Default option of the field"
|
| 2484 |
msgstr ""
|
| 2485 |
|
| 2486 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2487 |
msgid "Show Currency Symbol"
|
| 2488 |
msgstr ""
|
| 2489 |
|
| 2490 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2491 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
| 2492 |
msgstr ""
|
| 2493 |
|
| 2494 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2495 |
msgid "Show Post Type"
|
| 2496 |
msgstr ""
|
| 2497 |
|
| 2498 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2499 |
msgid "Posts from what post type will be displayed in the select."
|
| 2500 |
msgstr ""
|
| 2501 |
|
| 2502 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2503 |
msgid "Allowable Values"
|
| 2504 |
msgstr ""
|
| 2505 |
|
| 2506 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2507 |
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."
|
| 2508 |
msgstr ""
|
| 2509 |
|
| 2510 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2511 |
msgid "Error Message"
|
| 2512 |
msgstr ""
|
| 2513 |
|
| 2514 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2515 |
msgid "Set a custom error message that will be displayed to the user."
|
| 2516 |
msgstr ""
|
| 2517 |
|
| 2518 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2519 |
msgid "Time Format"
|
| 2520 |
msgstr ""
|
| 2521 |
|
| 2522 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2523 |
msgid "Specify the time format."
|
| 2524 |
msgstr ""
|
| 2525 |
|
| 2526 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2527 |
msgid "Google Maps API Key"
|
| 2528 |
msgstr ""
|
| 2529 |
|
| 2530 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2531 |
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."
|
| 2532 |
msgstr ""
|
| 2533 |
|
| 2534 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2535 |
msgid "Default Latitude"
|
| 2536 |
msgstr ""
|
| 2537 |
|
| 2538 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2539 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
| 2540 |
msgstr ""
|
| 2541 |
|
| 2542 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2543 |
msgid "Default Longitude"
|
| 2544 |
msgstr ""
|
| 2545 |
|
| 2546 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2547 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
| 2548 |
msgstr ""
|
| 2549 |
|
| 2550 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2551 |
msgid "Default Zoom Level"
|
| 2552 |
msgstr ""
|
| 2553 |
|
| 2554 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2555 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
| 2556 |
msgstr ""
|
| 2557 |
|
| 2558 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2559 |
msgid "Map Height"
|
| 2560 |
msgstr ""
|
| 2561 |
|
| 2562 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2563 |
msgid "The height of the map."
|
| 2564 |
msgstr ""
|
| 2565 |
|
| 2566 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2567 |
msgid "Default Content"
|
| 2568 |
msgstr ""
|
| 2569 |
|
| 2570 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2571 |
msgid "Default value of the textarea"
|
| 2572 |
msgstr ""
|
| 2573 |
|
| 2574 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2575 |
msgid "HTML Content"
|
| 2576 |
msgstr ""
|
| 2577 |
|
| 2578 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2579 |
msgid "Add your HTML (or text) content"
|
| 2580 |
msgstr ""
|
| 2581 |
|
| 2582 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2583 |
msgid "Phone Format"
|
| 2584 |
msgstr ""
|
| 2585 |
|
| 2586 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2587 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
| 2588 |
msgstr ""
|
| 2589 |
|
| 2590 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2591 |
msgid "Eg. (###) ###-####"
|
| 2592 |
msgstr ""
|
| 2593 |
|
| 2594 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2595 |
msgid "Empty field won't check for correct phone number."
|
| 2596 |
msgstr ""
|
| 2597 |
|
| 2598 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2599 |
msgid "Heading Tag"
|
| 2600 |
msgstr ""
|
| 2601 |
|
| 2602 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2603 |
msgid "Change heading field size on front-end forms"
|
| 2604 |
msgstr ""
|
| 2605 |
|
| 2606 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2607 |
msgid "Min Number Value"
|
| 2608 |
msgstr ""
|
| 2609 |
|
| 2610 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2611 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
| 2612 |
msgstr ""
|
| 2613 |
|
| 2614 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2615 |
msgid "Leave it empty for no min value"
|
| 2616 |
msgstr ""
|
| 2617 |
|
| 2618 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2619 |
msgid "Max Number Value"
|
| 2620 |
msgstr ""
|
| 2621 |
|
| 2622 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2623 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
| 2624 |
msgstr ""
|
| 2625 |
|
| 2626 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2627 |
msgid "Leave it empty for no max value"
|
| 2628 |
msgstr ""
|
| 2629 |
|
| 2630 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2631 |
msgid "Number Step Value"
|
| 2632 |
msgstr ""
|
| 2633 |
|
| 2634 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2635 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
| 2636 |
msgstr ""
|
| 2637 |
|
| 2638 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2639 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
| 2640 |
msgstr ""
|
| 2641 |
|
| 2642 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2643 |
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)"
|
| 2644 |
msgstr ""
|
| 2645 |
|
| 2646 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2647 |
msgid "Leave it empty for no restriction"
|
| 2648 |
msgstr ""
|
| 2649 |
|
| 2650 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2651 |
msgid "Whether the field is required or not"
|
| 2652 |
msgstr ""
|
| 2653 |
|
| 2654 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2655 |
msgid "Overwrite Existing"
|
| 2656 |
msgstr ""
|
| 2657 |
|
| 2658 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2659 |
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"
|
| 2660 |
msgstr ""
|
| 2661 |
|
| 2662 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2663 |
msgid "Form Field Properties"
|
| 2664 |
msgstr ""
|
| 2665 |
|
| 2666 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2667 |
msgid "Registration & Edit Profile Forms"
|
| 2668 |
msgstr ""
|
| 2669 |
|
| 2670 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2671 |
msgid "Usernames cannot be changed."
|
| 2672 |
msgstr ""
|
| 2673 |
|
| 2674 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2675 |
msgid "Nickname"
|
| 2676 |
msgstr ""
|
| 2677 |
|
| 2678 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2679 |
msgid "Display name publicly as"
|
| 2680 |
msgstr ""
|
| 2681 |
|
| 2682 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2683 |
msgid "Website"
|
| 2684 |
msgstr ""
|
| 2685 |
|
| 2686 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2687 |
msgid "AIM"
|
| 2688 |
msgstr ""
|
| 2689 |
|
| 2690 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2691 |
msgid "Yahoo IM"
|
| 2692 |
msgstr ""
|
| 2693 |
|
| 2694 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2695 |
msgid "Jabber / Google Talk"
|
| 2696 |
msgstr ""
|
| 2697 |
|
| 2698 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2699 |
msgid "Biographical Info"
|
| 2700 |
msgstr ""
|
| 2701 |
|
| 2702 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2703 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
| 2704 |
msgstr ""
|
| 2705 |
|
| 2706 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2707 |
msgid "Password"
|
| 2708 |
msgstr ""
|
| 2709 |
|
| 2710 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2711 |
msgid "Type your password."
|
| 2712 |
msgstr ""
|
| 2713 |
|
| 2714 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2715 |
msgid "Repeat Password"
|
| 2716 |
msgstr ""
|
| 2717 |
|
| 2718 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2719 |
msgid "Type your password again. "
|
| 2720 |
msgstr ""
|
| 2721 |
|
| 2722 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2723 |
msgid "Blog Details"
|
| 2724 |
msgstr ""
|
| 2725 |
|
| 2726 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2727 |
msgid "Select a Country"
|
| 2728 |
msgstr ""
|
| 2729 |
|
| 2730 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2731 |
msgid "Afghanistan"
|
| 2732 |
msgstr ""
|
| 2733 |
|
| 2734 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2735 |
msgid "Aland Islands"
|
| 2736 |
msgstr ""
|
| 2737 |
|
| 2738 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2739 |
msgid "Albania"
|
| 2740 |
msgstr ""
|
| 2741 |
|
| 2742 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2743 |
msgid "Algeria"
|
| 2744 |
msgstr ""
|
| 2745 |
|
| 2746 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2747 |
msgid "American Samoa"
|
| 2748 |
msgstr ""
|
| 2749 |
|
| 2750 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2751 |
msgid "Andorra"
|
| 2752 |
msgstr ""
|
| 2753 |
|
| 2754 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2755 |
msgid "Angola"
|
| 2756 |
msgstr ""
|
| 2757 |
|
| 2758 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2759 |
msgid "Anguilla"
|
| 2760 |
msgstr ""
|
| 2761 |
|
| 2762 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2763 |
msgid "Antarctica"
|
| 2764 |
msgstr ""
|
| 2765 |
|
| 2766 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2767 |
msgid "Antigua and Barbuda"
|
| 2768 |
msgstr ""
|
| 2769 |
|
| 2770 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2771 |
msgid "Argentina"
|
| 2772 |
msgstr ""
|
| 2773 |
|
| 2774 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2775 |
msgid "Armenia"
|
| 2776 |
msgstr ""
|
| 2777 |
|
| 2778 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2779 |
msgid "Aruba"
|
| 2780 |
msgstr ""
|
| 2781 |
|
| 2782 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2783 |
msgid "Australia"
|
| 2784 |
msgstr ""
|
| 2785 |
|
| 2786 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2787 |
msgid "Austria"
|
| 2788 |
msgstr ""
|
| 2789 |
|
| 2790 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2791 |
msgid "Azerbaijan"
|
| 2792 |
msgstr ""
|
| 2793 |
|
| 2794 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2795 |
msgid "Bahamas"
|
| 2796 |
msgstr ""
|
| 2797 |
|
| 2798 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2799 |
msgid "Bahrain"
|
| 2800 |
msgstr ""
|
| 2801 |
|
| 2802 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2803 |
msgid "Bangladesh"
|
| 2804 |
msgstr ""
|
| 2805 |
|
| 2806 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2807 |
msgid "Barbados"
|
| 2808 |
msgstr ""
|
| 2809 |
|
| 2810 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2811 |
msgid "Belarus"
|
| 2812 |
msgstr ""
|
| 2813 |
|
| 2814 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2815 |
msgid "Belgium"
|
| 2816 |
msgstr ""
|
| 2817 |
|
| 2818 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2819 |
msgid "Belize"
|
| 2820 |
msgstr ""
|
| 2821 |
|
| 2822 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2823 |
msgid "Benin"
|
| 2824 |
msgstr ""
|
| 2825 |
|
| 2826 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2827 |
msgid "Bermuda"
|
| 2828 |
msgstr ""
|
| 2829 |
|
| 2830 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2831 |
msgid "Bhutan"
|
| 2832 |
msgstr ""
|
| 2833 |
|
| 2834 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2835 |
msgid "Bolivia"
|
| 2836 |
msgstr ""
|
| 2837 |
|
| 2838 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2839 |
msgid "Bonaire, Saint Eustatius and Saba"
|
| 2840 |
msgstr ""
|
| 2841 |
|
| 2842 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2843 |
msgid "Bosnia and Herzegovina"
|
| 2844 |
msgstr ""
|
| 2845 |
|
| 2846 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2847 |
msgid "Botswana"
|
| 2848 |
msgstr ""
|
| 2849 |
|
| 2850 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2851 |
msgid "Bouvet Island"
|
| 2852 |
msgstr ""
|
| 2853 |
|
| 2854 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2855 |
msgid "Brazil"
|
| 2856 |
msgstr ""
|
| 2857 |
|
| 2858 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2859 |
msgid "British Indian Ocean Territory"
|
| 2860 |
msgstr ""
|
| 2861 |
|
| 2862 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2863 |
msgid "British Virgin Islands"
|
| 2864 |
msgstr ""
|
| 2865 |
|
| 2866 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2867 |
msgid "Brunei"
|
| 2868 |
msgstr ""
|
| 2869 |
|
| 2870 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2871 |
msgid "Bulgaria"
|
| 2872 |
msgstr ""
|
| 2873 |
|
| 2874 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2875 |
msgid "Burkina Faso"
|
| 2876 |
msgstr ""
|
| 2877 |
|
| 2878 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2879 |
msgid "Burundi"
|
| 2880 |
msgstr ""
|
| 2881 |
|
| 2882 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2883 |
msgid "Cambodia"
|
| 2884 |
msgstr ""
|
| 2885 |
|
| 2886 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2887 |
msgid "Cameroon"
|
| 2888 |
msgstr ""
|
| 2889 |
|
| 2890 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2891 |
msgid "Canada"
|
| 2892 |
msgstr ""
|
| 2893 |
|
| 2894 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2895 |
msgid "Cape Verde"
|
| 2896 |
msgstr ""
|
| 2897 |
|
| 2898 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2899 |
msgid "Cayman Islands"
|
| 2900 |
msgstr ""
|
| 2901 |
|
| 2902 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2903 |
msgid "Central African Republic"
|
| 2904 |
msgstr ""
|
| 2905 |
|
| 2906 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2907 |
msgid "Chad"
|
| 2908 |
msgstr ""
|
| 2909 |
|
| 2910 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2911 |
msgid "Chile"
|
| 2912 |
msgstr ""
|
| 2913 |
|
| 2914 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2915 |
msgid "China"
|
| 2916 |
msgstr ""
|
| 2917 |
|
| 2918 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2919 |
msgid "Christmas Island"
|
| 2920 |
msgstr ""
|
| 2921 |
|
| 2922 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2923 |
msgid "Cocos Islands"
|
| 2924 |
msgstr ""
|
| 2925 |
|
| 2926 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2927 |
msgid "Colombia"
|
| 2928 |
msgstr ""
|
| 2929 |
|
| 2930 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2931 |
msgid "Comoros"
|
| 2932 |
msgstr ""
|
| 2933 |
|
| 2934 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2935 |
msgid "Cook Islands"
|
| 2936 |
msgstr ""
|
| 2937 |
|
| 2938 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2939 |
msgid "Costa Rica"
|
| 2940 |
msgstr ""
|
| 2941 |
|
| 2942 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2943 |
msgid "Croatia"
|
| 2944 |
msgstr ""
|
| 2945 |
|
| 2946 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2947 |
msgid "Cuba"
|
| 2948 |
msgstr ""
|
| 2949 |
|
| 2950 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2951 |
msgid "Curacao"
|
| 2952 |
msgstr ""
|
| 2953 |
|
| 2954 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2955 |
msgid "Cyprus"
|
| 2956 |
msgstr ""
|
| 2957 |
|
| 2958 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2959 |
msgid "Czech Republic"
|
| 2960 |
msgstr ""
|
| 2961 |
|
| 2962 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2963 |
msgid "Democratic Republic of the Congo"
|
| 2964 |
msgstr ""
|
| 2965 |
|
| 2966 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2967 |
msgid "Denmark"
|
| 2968 |
msgstr ""
|
| 2969 |
|
| 2970 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2971 |
msgid "Djibouti"
|
| 2972 |
msgstr ""
|
| 2973 |
|
| 2974 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2975 |
msgid "Dominica"
|
| 2976 |
msgstr ""
|
| 2977 |
|
| 2978 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2979 |
msgid "Dominican Republic"
|
| 2980 |
msgstr ""
|
| 2981 |
|
| 2982 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2983 |
msgid "East Timor"
|
| 2984 |
msgstr ""
|
| 2985 |
|
| 2986 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2987 |
msgid "Ecuador"
|
| 2988 |
msgstr ""
|
| 2989 |
|
| 2990 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2991 |
msgid "Egypt"
|
| 2992 |
msgstr ""
|
| 2993 |
|
| 2994 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2995 |
msgid "El Salvador"
|
| 2996 |
msgstr ""
|
| 2997 |
|
| 2998 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 2999 |
msgid "Equatorial Guinea"
|
| 3000 |
msgstr ""
|
| 3001 |
|
| 3002 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3003 |
msgid "Eritrea"
|
| 3004 |
msgstr ""
|
| 3005 |
|
| 3006 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3007 |
msgid "Estonia"
|
| 3008 |
msgstr ""
|
| 3009 |
|
| 3010 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3011 |
msgid "Ethiopia"
|
| 3012 |
msgstr ""
|
| 3013 |
|
| 3014 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3015 |
msgid "Falkland Islands"
|
| 3016 |
msgstr ""
|
| 3017 |
|
| 3018 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3019 |
msgid "Faroe Islands"
|
| 3020 |
msgstr ""
|
| 3021 |
|
| 3022 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3023 |
msgid "Fiji"
|
| 3024 |
msgstr ""
|
| 3025 |
|
| 3026 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3027 |
msgid "Finland"
|
| 3028 |
msgstr ""
|
| 3029 |
|
| 3030 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3031 |
msgid "France"
|
| 3032 |
msgstr ""
|
| 3033 |
|
| 3034 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3035 |
msgid "French Guiana"
|
| 3036 |
msgstr ""
|
| 3037 |
|
| 3038 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3039 |
msgid "French Polynesia"
|
| 3040 |
msgstr ""
|
| 3041 |
|
| 3042 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3043 |
msgid "French Southern Territories"
|
| 3044 |
msgstr ""
|
| 3045 |
|
| 3046 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3047 |
msgid "Gabon"
|
| 3048 |
msgstr ""
|
| 3049 |
|
| 3050 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3051 |
msgid "Gambia"
|
| 3052 |
msgstr ""
|
| 3053 |
|
| 3054 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3055 |
msgid "Georgia"
|
| 3056 |
msgstr ""
|
| 3057 |
|
| 3058 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3059 |
msgid "Germany"
|
| 3060 |
msgstr ""
|
| 3061 |
|
| 3062 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3063 |
msgid "Ghana"
|
| 3064 |
msgstr ""
|
| 3065 |
|
| 3066 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3067 |
msgid "Gibraltar"
|
| 3068 |
msgstr ""
|
| 3069 |
|
| 3070 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3071 |
msgid "Greece"
|
| 3072 |
msgstr ""
|
| 3073 |
|
| 3074 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3075 |
msgid "Greenland"
|
| 3076 |
msgstr ""
|
| 3077 |
|
| 3078 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3079 |
msgid "Grenada"
|
| 3080 |
msgstr ""
|
| 3081 |
|
| 3082 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3083 |
msgid "Guadeloupe"
|
| 3084 |
msgstr ""
|
| 3085 |
|
| 3086 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3087 |
msgid "Guam"
|
| 3088 |
msgstr ""
|
| 3089 |
|
| 3090 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3091 |
msgid "Guatemala"
|
| 3092 |
msgstr ""
|
| 3093 |
|
| 3094 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3095 |
msgid "Guernsey"
|
| 3096 |
msgstr ""
|
| 3097 |
|
| 3098 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3099 |
msgid "Guinea"
|
| 3100 |
msgstr ""
|
| 3101 |
|
| 3102 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3103 |
msgid "Guinea-Bissau"
|
| 3104 |
msgstr ""
|
| 3105 |
|
| 3106 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3107 |
msgid "Guyana"
|
| 3108 |
msgstr ""
|
| 3109 |
|
| 3110 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3111 |
msgid "Haiti"
|
| 3112 |
msgstr ""
|
| 3113 |
|
| 3114 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3115 |
msgid "Heard Island and McDonald Islands"
|
| 3116 |
msgstr ""
|
| 3117 |
|
| 3118 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3119 |
msgid "Honduras"
|
| 3120 |
msgstr ""
|
| 3121 |
|
| 3122 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3123 |
msgid "Hong Kong"
|
| 3124 |
msgstr ""
|
| 3125 |
|
| 3126 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3127 |
msgid "Hungary"
|
| 3128 |
msgstr ""
|
| 3129 |
|
| 3130 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3131 |
msgid "Iceland"
|
| 3132 |
msgstr ""
|
| 3133 |
|
| 3134 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3135 |
msgid "India"
|
| 3136 |
msgstr ""
|
| 3137 |
|
| 3138 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3139 |
msgid "Indonesia"
|
| 3140 |
msgstr ""
|
| 3141 |
|
| 3142 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3143 |
msgid "Iran"
|
| 3144 |
msgstr ""
|
| 3145 |
|
| 3146 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3147 |
msgid "Iraq"
|
| 3148 |
msgstr ""
|
| 3149 |
|
| 3150 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3151 |
msgid "Ireland"
|
| 3152 |
msgstr ""
|
| 3153 |
|
| 3154 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3155 |
msgid "Isle of Man"
|
| 3156 |
msgstr ""
|
| 3157 |
|
| 3158 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3159 |
msgid "Israel"
|
| 3160 |
msgstr ""
|
| 3161 |
|
| 3162 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3163 |
msgid "Italy"
|
| 3164 |
msgstr ""
|
| 3165 |
|
| 3166 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3167 |
msgid "Ivory Coast"
|
| 3168 |
msgstr ""
|
| 3169 |
|
| 3170 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3171 |
msgid "Jamaica"
|
| 3172 |
msgstr ""
|
| 3173 |
|
| 3174 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3175 |
msgid "Japan"
|
| 3176 |
msgstr ""
|
| 3177 |
|
| 3178 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3179 |
msgid "Jersey"
|
| 3180 |
msgstr ""
|
| 3181 |
|
| 3182 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3183 |
msgid "Jordan"
|
| 3184 |
msgstr ""
|
| 3185 |
|
| 3186 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3187 |
msgid "Kazakhstan"
|
| 3188 |
msgstr ""
|
| 3189 |
|
| 3190 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3191 |
msgid "Kenya"
|
| 3192 |
msgstr ""
|
| 3193 |
|
| 3194 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3195 |
msgid "Kiribati"
|
| 3196 |
msgstr ""
|
| 3197 |
|
| 3198 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3199 |
msgid "Kosovo"
|
| 3200 |
msgstr ""
|
| 3201 |
|
| 3202 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3203 |
msgid "Kuwait"
|
| 3204 |
msgstr ""
|
| 3205 |
|
| 3206 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3207 |
msgid "Kyrgyzstan"
|
| 3208 |
msgstr ""
|
| 3209 |
|
| 3210 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3211 |
msgid "Laos"
|
| 3212 |
msgstr ""
|
| 3213 |
|
| 3214 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3215 |
msgid "Latvia"
|
| 3216 |
msgstr ""
|
| 3217 |
|
| 3218 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3219 |
msgid "Lebanon"
|
| 3220 |
msgstr ""
|
| 3221 |
|
| 3222 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3223 |
msgid "Lesotho"
|
| 3224 |
msgstr ""
|
| 3225 |
|
| 3226 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3227 |
msgid "Liberia"
|
| 3228 |
msgstr ""
|
| 3229 |
|
| 3230 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3231 |
msgid "Libya"
|
| 3232 |
msgstr ""
|
| 3233 |
|
| 3234 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3235 |
msgid "Liechtenstein"
|
| 3236 |
msgstr ""
|
| 3237 |
|
| 3238 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3239 |
msgid "Lithuania"
|
| 3240 |
msgstr ""
|
| 3241 |
|
| 3242 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3243 |
msgid "Luxembourg"
|
| 3244 |
msgstr ""
|
| 3245 |
|
| 3246 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3247 |
msgid "Macao"
|
| 3248 |
msgstr ""
|
| 3249 |
|
| 3250 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3251 |
msgid "Macedonia"
|
| 3252 |
msgstr ""
|
| 3253 |
|
| 3254 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3255 |
msgid "Madagascar"
|
| 3256 |
msgstr ""
|
| 3257 |
|
| 3258 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3259 |
msgid "Malawi"
|
| 3260 |
msgstr ""
|
| 3261 |
|
| 3262 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3263 |
msgid "Malaysia"
|
| 3264 |
msgstr ""
|
| 3265 |
|
| 3266 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3267 |
msgid "Maldives"
|
| 3268 |
msgstr ""
|
| 3269 |
|
| 3270 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3271 |
msgid "Mali"
|
| 3272 |
msgstr ""
|
| 3273 |
|
| 3274 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3275 |
msgid "Malta"
|
| 3276 |
msgstr ""
|
| 3277 |
|
| 3278 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3279 |
msgid "Marshall Islands"
|
| 3280 |
msgstr ""
|
| 3281 |
|
| 3282 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3283 |
msgid "Martinique"
|
| 3284 |
msgstr ""
|
| 3285 |
|
| 3286 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3287 |
msgid "Mauritania"
|
| 3288 |
msgstr ""
|
| 3289 |
|
| 3290 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3291 |
msgid "Mauritius"
|
| 3292 |
msgstr ""
|
| 3293 |
|
| 3294 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3295 |
msgid "Mayotte"
|
| 3296 |
msgstr ""
|
| 3297 |
|
| 3298 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3299 |
msgid "Mexico"
|
| 3300 |
msgstr ""
|
| 3301 |
|
| 3302 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3303 |
msgid "Micronesia"
|
| 3304 |
msgstr ""
|
| 3305 |
|
| 3306 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3307 |
msgid "Moldova"
|
| 3308 |
msgstr ""
|
| 3309 |
|
| 3310 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3311 |
msgid "Monaco"
|
| 3312 |
msgstr ""
|
| 3313 |
|
| 3314 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3315 |
msgid "Mongolia"
|
| 3316 |
msgstr ""
|
| 3317 |
|
| 3318 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3319 |
msgid "Montenegro"
|
| 3320 |
msgstr ""
|
| 3321 |
|
| 3322 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3323 |
msgid "Montserrat"
|
| 3324 |
msgstr ""
|
| 3325 |
|
| 3326 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3327 |
msgid "Morocco"
|
| 3328 |
msgstr ""
|
| 3329 |
|
| 3330 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3331 |
msgid "Mozambique"
|
| 3332 |
msgstr ""
|
| 3333 |
|
| 3334 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3335 |
msgid "Myanmar"
|
| 3336 |
msgstr ""
|
| 3337 |
|
| 3338 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3339 |
msgid "Namibia"
|
| 3340 |
msgstr ""
|
| 3341 |
|
| 3342 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3343 |
msgid "Nauru"
|
| 3344 |
msgstr ""
|
| 3345 |
|
| 3346 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3347 |
msgid "Nepal"
|
| 3348 |
msgstr ""
|
| 3349 |
|
| 3350 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3351 |
msgid "Netherlands"
|
| 3352 |
msgstr ""
|
| 3353 |
|
| 3354 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3355 |
msgid "New Caledonia"
|
| 3356 |
msgstr ""
|
| 3357 |
|
| 3358 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3359 |
msgid "New Zealand"
|
| 3360 |
msgstr ""
|
| 3361 |
|
| 3362 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3363 |
msgid "Nicaragua"
|
| 3364 |
msgstr ""
|
| 3365 |
|
| 3366 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3367 |
msgid "Niger"
|
| 3368 |
msgstr ""
|
| 3369 |
|
| 3370 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3371 |
msgid "Nigeria"
|
| 3372 |
msgstr ""
|
| 3373 |
|
| 3374 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3375 |
msgid "Niue"
|
| 3376 |
msgstr ""
|
| 3377 |
|
| 3378 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3379 |
msgid "Norfolk Island"
|
| 3380 |
msgstr ""
|
| 3381 |
|
| 3382 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3383 |
msgid "North Korea"
|
| 3384 |
msgstr ""
|
| 3385 |
|
| 3386 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3387 |
msgid "Northern Mariana Islands"
|
| 3388 |
msgstr ""
|
| 3389 |
|
| 3390 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3391 |
msgid "Norway"
|
| 3392 |
msgstr ""
|
| 3393 |
|
| 3394 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3395 |
msgid "Oman"
|
| 3396 |
msgstr ""
|
| 3397 |
|
| 3398 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3399 |
msgid "Pakistan"
|
| 3400 |
msgstr ""
|
| 3401 |
|
| 3402 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3403 |
msgid "Palau"
|
| 3404 |
msgstr ""
|
| 3405 |
|
| 3406 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3407 |
msgid "Palestinian Territory"
|
| 3408 |
msgstr ""
|
| 3409 |
|
| 3410 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3411 |
msgid "Panama"
|
| 3412 |
msgstr ""
|
| 3413 |
|
| 3414 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3415 |
msgid "Papua New Guinea"
|
| 3416 |
msgstr ""
|
| 3417 |
|
| 3418 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3419 |
msgid "Paraguay"
|
| 3420 |
msgstr ""
|
| 3421 |
|
| 3422 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3423 |
msgid "Peru"
|
| 3424 |
msgstr ""
|
| 3425 |
|
| 3426 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3427 |
msgid "Philippines"
|
| 3428 |
msgstr ""
|
| 3429 |
|
| 3430 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3431 |
msgid "Pitcairn"
|
| 3432 |
msgstr ""
|
| 3433 |
|
| 3434 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3435 |
msgid "Poland"
|
| 3436 |
msgstr ""
|
| 3437 |
|
| 3438 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3439 |
msgid "Portugal"
|
| 3440 |
msgstr ""
|
| 3441 |
|
| 3442 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3443 |
msgid "Puerto Rico"
|
| 3444 |
msgstr ""
|
| 3445 |
|
| 3446 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3447 |
msgid "Qatar"
|
| 3448 |
msgstr ""
|
| 3449 |
|
| 3450 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3451 |
msgid "Republic of the Congo"
|
| 3452 |
msgstr ""
|
| 3453 |
|
| 3454 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3455 |
msgid "Reunion"
|
| 3456 |
msgstr ""
|
| 3457 |
|
| 3458 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3459 |
msgid "Romania"
|
| 3460 |
msgstr ""
|
| 3461 |
|
| 3462 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3463 |
msgid "Russia"
|
| 3464 |
msgstr ""
|
| 3465 |
|
| 3466 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3467 |
msgid "Rwanda"
|
| 3468 |
msgstr ""
|
| 3469 |
|
| 3470 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3471 |
msgid "Saint Barthelemy"
|
| 3472 |
msgstr ""
|
| 3473 |
|
| 3474 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3475 |
msgid "Saint Helena"
|
| 3476 |
msgstr ""
|
| 3477 |
|
| 3478 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3479 |
msgid "Saint Kitts and Nevis"
|
| 3480 |
msgstr ""
|
| 3481 |
|
| 3482 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3483 |
msgid "Saint Lucia"
|
| 3484 |
msgstr ""
|
| 3485 |
|
| 3486 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3487 |
msgid "Saint Martin"
|
| 3488 |
msgstr ""
|
| 3489 |
|
| 3490 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3491 |
msgid "Saint Pierre and Miquelon"
|
| 3492 |
msgstr ""
|
| 3493 |
|
| 3494 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3495 |
msgid "Saint Vincent and the Grenadines"
|
| 3496 |
msgstr ""
|
| 3497 |
|
| 3498 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3499 |
msgid "Samoa"
|
| 3500 |
msgstr ""
|
| 3501 |
|
| 3502 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3503 |
msgid "San Marino"
|
| 3504 |
msgstr ""
|
| 3505 |
|
| 3506 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3507 |
msgid "Sao Tome and Principe"
|
| 3508 |
msgstr ""
|
| 3509 |
|
| 3510 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3511 |
msgid "Saudi Arabia"
|
| 3512 |
msgstr ""
|
| 3513 |
|
| 3514 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3515 |
msgid "Senegal"
|
| 3516 |
msgstr ""
|
| 3517 |
|
| 3518 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3519 |
msgid "Serbia"
|
| 3520 |
msgstr ""
|
| 3521 |
|
| 3522 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3523 |
msgid "Seychelles"
|
| 3524 |
msgstr ""
|
| 3525 |
|
| 3526 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3527 |
msgid "Sierra Leone"
|
| 3528 |
msgstr ""
|
| 3529 |
|
| 3530 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3531 |
msgid "Singapore"
|
| 3532 |
msgstr ""
|
| 3533 |
|
| 3534 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3535 |
msgid "Sint Maarten"
|
| 3536 |
msgstr ""
|
| 3537 |
|
| 3538 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3539 |
msgid "Slovakia"
|
| 3540 |
msgstr ""
|
| 3541 |
|
| 3542 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3543 |
msgid "Slovenia"
|
| 3544 |
msgstr ""
|
| 3545 |
|
| 3546 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3547 |
msgid "Solomon Islands"
|
| 3548 |
msgstr ""
|
| 3549 |
|
| 3550 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3551 |
msgid "Somalia"
|
| 3552 |
msgstr ""
|
| 3553 |
|
| 3554 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3555 |
msgid "South Africa"
|
| 3556 |
msgstr ""
|
| 3557 |
|
| 3558 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3559 |
msgid "South Georgia and the South Sandwich Islands"
|
| 3560 |
msgstr ""
|
| 3561 |
|
| 3562 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3563 |
msgid "South Korea"
|
| 3564 |
msgstr ""
|
| 3565 |
|
| 3566 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3567 |
msgid "South Sudan"
|
| 3568 |
msgstr ""
|
| 3569 |
|
| 3570 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3571 |
msgid "Spain"
|
| 3572 |
msgstr ""
|
| 3573 |
|
| 3574 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3575 |
msgid "Sri Lanka"
|
| 3576 |
msgstr ""
|
| 3577 |
|
| 3578 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3579 |
msgid "Sudan"
|
| 3580 |
msgstr ""
|
| 3581 |
|
| 3582 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3583 |
msgid "Suriname"
|
| 3584 |
msgstr ""
|
| 3585 |
|
| 3586 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3587 |
msgid "Svalbard and Jan Mayen"
|
| 3588 |
msgstr ""
|
| 3589 |
|
| 3590 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3591 |
msgid "Swaziland"
|
| 3592 |
msgstr ""
|
| 3593 |
|
| 3594 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3595 |
msgid "Sweden"
|
| 3596 |
msgstr ""
|
| 3597 |
|
| 3598 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3599 |
msgid "Switzerland"
|
| 3600 |
msgstr ""
|
| 3601 |
|
| 3602 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3603 |
msgid "Syria"
|
| 3604 |
msgstr ""
|
| 3605 |
|
| 3606 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3607 |
msgid "Taiwan"
|
| 3608 |
msgstr ""
|
| 3609 |
|
| 3610 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3611 |
msgid "Tajikistan"
|
| 3612 |
msgstr ""
|
| 3613 |
|
| 3614 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3615 |
msgid "Tanzania"
|
| 3616 |
msgstr ""
|
| 3617 |
|
| 3618 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3619 |
msgid "Thailand"
|
| 3620 |
msgstr ""
|
| 3621 |
|
| 3622 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3623 |
msgid "Togo"
|
| 3624 |
msgstr ""
|
| 3625 |
|
| 3626 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3627 |
msgid "Tokelau"
|
| 3628 |
msgstr ""
|
| 3629 |
|
| 3630 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3631 |
msgid "Tonga"
|
| 3632 |
msgstr ""
|
| 3633 |
|
| 3634 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3635 |
msgid "Trinidad and Tobago"
|
| 3636 |
msgstr ""
|
| 3637 |
|
| 3638 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3639 |
msgid "Tunisia"
|
| 3640 |
msgstr ""
|
| 3641 |
|
| 3642 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3643 |
msgid "Turkey"
|
| 3644 |
msgstr ""
|
| 3645 |
|
| 3646 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3647 |
msgid "Turkmenistan"
|
| 3648 |
msgstr ""
|
| 3649 |
|
| 3650 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3651 |
msgid "Turks and Caicos Islands"
|
| 3652 |
msgstr ""
|
| 3653 |
|
| 3654 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3655 |
msgid "Tuvalu"
|
| 3656 |
msgstr ""
|
| 3657 |
|
| 3658 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3659 |
msgid "U.S. Virgin Islands"
|
| 3660 |
msgstr ""
|
| 3661 |
|
| 3662 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3663 |
msgid "Uganda"
|
| 3664 |
msgstr ""
|
| 3665 |
|
| 3666 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3667 |
msgid "Ukraine"
|
| 3668 |
msgstr ""
|
| 3669 |
|
| 3670 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3671 |
msgid "United Arab Emirates"
|
| 3672 |
msgstr ""
|
| 3673 |
|
| 3674 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3675 |
msgid "United Kingdom"
|
| 3676 |
msgstr ""
|
| 3677 |
|
| 3678 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3679 |
msgid "United States"
|
| 3680 |
msgstr ""
|
| 3681 |
|
| 3682 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3683 |
msgid "United States Minor Outlying Islands"
|
| 3684 |
msgstr ""
|
| 3685 |
|
| 3686 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3687 |
msgid "Uruguay"
|
| 3688 |
msgstr ""
|
| 3689 |
|
| 3690 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3691 |
msgid "Uzbekistan"
|
| 3692 |
msgstr ""
|
| 3693 |
|
| 3694 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3695 |
msgid "Vanuatu"
|
| 3696 |
msgstr ""
|
| 3697 |
|
| 3698 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3699 |
msgid "Vatican"
|
| 3700 |
msgstr ""
|
| 3701 |
|
| 3702 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3703 |
msgid "Venezuela"
|
| 3704 |
msgstr ""
|
| 3705 |
|
| 3706 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3707 |
msgid "Vietnam"
|
| 3708 |
msgstr ""
|
| 3709 |
|
| 3710 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3711 |
msgid "Wallis and Futuna"
|
| 3712 |
msgstr ""
|
| 3713 |
|
| 3714 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3715 |
msgid "Western Sahara"
|
| 3716 |
msgstr ""
|
| 3717 |
|
| 3718 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3719 |
msgid "Yemen"
|
| 3720 |
msgstr ""
|
| 3721 |
|
| 3722 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3723 |
msgid "Zambia"
|
| 3724 |
msgstr ""
|
| 3725 |
|
| 3726 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3727 |
msgid "Zimbabwe"
|
| 3728 |
msgstr ""
|
| 3729 |
|
| 3730 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3731 |
msgid "Albania Lek"
|
| 3732 |
msgstr ""
|
| 3733 |
|
| 3734 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3735 |
msgid "Afghanistan Afghani"
|
| 3736 |
msgstr ""
|
| 3737 |
|
| 3738 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3739 |
msgid "Argentina Peso"
|
| 3740 |
msgstr ""
|
| 3741 |
|
| 3742 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3743 |
msgid "Australia Dollar"
|
| 3744 |
msgstr ""
|
| 3745 |
|
| 3746 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3747 |
msgid "Azerbaijan New Manat"
|
| 3748 |
msgstr ""
|
| 3749 |
|
| 3750 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3751 |
msgid "Bahamas Dollar"
|
| 3752 |
msgstr ""
|
| 3753 |
|
| 3754 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3755 |
msgid "Barbados Dollar"
|
| 3756 |
msgstr ""
|
| 3757 |
|
| 3758 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3759 |
msgid "Bangladeshi taka"
|
| 3760 |
msgstr ""
|
| 3761 |
|
| 3762 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3763 |
msgid "Belarus Ruble"
|
| 3764 |
msgstr ""
|
| 3765 |
|
| 3766 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3767 |
msgid "Belize Dollar"
|
| 3768 |
msgstr ""
|
| 3769 |
|
| 3770 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3771 |
msgid "Bermuda Dollar"
|
| 3772 |
msgstr ""
|
| 3773 |
|
| 3774 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3775 |
msgid "Bolivia Boliviano"
|
| 3776 |
msgstr ""
|
| 3777 |
|
| 3778 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3779 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
| 3780 |
msgstr ""
|
| 3781 |
|
| 3782 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3783 |
msgid "Botswana Pula"
|
| 3784 |
msgstr ""
|
| 3785 |
|
| 3786 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3787 |
msgid "Bulgaria Lev"
|
| 3788 |
msgstr ""
|
| 3789 |
|
| 3790 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3791 |
msgid "Brazil Real"
|
| 3792 |
msgstr ""
|
| 3793 |
|
| 3794 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3795 |
msgid "Brunei Darussalam Dollar"
|
| 3796 |
msgstr ""
|
| 3797 |
|
| 3798 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3799 |
msgid "Cambodia Riel"
|
| 3800 |
msgstr ""
|
| 3801 |
|
| 3802 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3803 |
msgid "Canada Dollar"
|
| 3804 |
msgstr ""
|
| 3805 |
|
| 3806 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3807 |
msgid "Cayman Islands Dollar"
|
| 3808 |
msgstr ""
|
| 3809 |
|
| 3810 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3811 |
msgid "Chile Peso"
|
| 3812 |
msgstr ""
|
| 3813 |
|
| 3814 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3815 |
msgid "China Yuan Renminbi"
|
| 3816 |
msgstr ""
|
| 3817 |
|
| 3818 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3819 |
msgid "Colombia Peso"
|
| 3820 |
msgstr ""
|
| 3821 |
|
| 3822 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3823 |
msgid "Costa Rica Colon"
|
| 3824 |
msgstr ""
|
| 3825 |
|
| 3826 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3827 |
msgid "Croatia Kuna"
|
| 3828 |
msgstr ""
|
| 3829 |
|
| 3830 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3831 |
msgid "Cuba Peso"
|
| 3832 |
msgstr ""
|
| 3833 |
|
| 3834 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3835 |
msgid "Czech Republic Koruna"
|
| 3836 |
msgstr ""
|
| 3837 |
|
| 3838 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3839 |
msgid "Denmark Krone"
|
| 3840 |
msgstr ""
|
| 3841 |
|
| 3842 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3843 |
msgid "Dominican Republic Peso"
|
| 3844 |
msgstr ""
|
| 3845 |
|
| 3846 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3847 |
msgid "East Caribbean Dollar"
|
| 3848 |
msgstr ""
|
| 3849 |
|
| 3850 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3851 |
msgid "Egypt Pound"
|
| 3852 |
msgstr ""
|
| 3853 |
|
| 3854 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3855 |
msgid "El Salvador Colon"
|
| 3856 |
msgstr ""
|
| 3857 |
|
| 3858 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3859 |
msgid "Estonia Kroon"
|
| 3860 |
msgstr ""
|
| 3861 |
|
| 3862 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3863 |
msgid "Euro"
|
| 3864 |
msgstr ""
|
| 3865 |
|
| 3866 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3867 |
msgid "Falkland Islands (Malvinas) Pound"
|
| 3868 |
msgstr ""
|
| 3869 |
|
| 3870 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3871 |
msgid "Fiji Dollar"
|
| 3872 |
msgstr ""
|
| 3873 |
|
| 3874 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3875 |
msgid "Ghana Cedis"
|
| 3876 |
msgstr ""
|
| 3877 |
|
| 3878 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3879 |
msgid "Gibraltar Pound"
|
| 3880 |
msgstr ""
|
| 3881 |
|
| 3882 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3883 |
msgid "Guatemala Quetzal"
|
| 3884 |
msgstr ""
|
| 3885 |
|
| 3886 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3887 |
msgid "Guernsey Pound"
|
| 3888 |
msgstr ""
|
| 3889 |
|
| 3890 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3891 |
msgid "Guyana Dollar"
|
| 3892 |
msgstr ""
|
| 3893 |
|
| 3894 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3895 |
msgid "Honduras Lempira"
|
| 3896 |
msgstr ""
|
| 3897 |
|
| 3898 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3899 |
msgid "Hong Kong Dollar"
|
| 3900 |
msgstr ""
|
| 3901 |
|
| 3902 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3903 |
msgid "Hungary Forint"
|
| 3904 |
msgstr ""
|
| 3905 |
|
| 3906 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3907 |
msgid "Iceland Krona"
|
| 3908 |
msgstr ""
|
| 3909 |
|
| 3910 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3911 |
msgid "India Rupee"
|
| 3912 |
msgstr ""
|
| 3913 |
|
| 3914 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3915 |
msgid "Indonesia Rupiah"
|
| 3916 |
msgstr ""
|
| 3917 |
|
| 3918 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3919 |
msgid "Iran Rial"
|
| 3920 |
msgstr ""
|
| 3921 |
|
| 3922 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3923 |
msgid "Isle of Man Pound"
|
| 3924 |
msgstr ""
|
| 3925 |
|
| 3926 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3927 |
msgid "Israel Shekel"
|
| 3928 |
msgstr ""
|
| 3929 |
|
| 3930 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3931 |
msgid "Jamaica Dollar"
|
| 3932 |
msgstr ""
|
| 3933 |
|
| 3934 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3935 |
msgid "Japan Yen"
|
| 3936 |
msgstr ""
|
| 3937 |
|
| 3938 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3939 |
msgid "Jersey Pound"
|
| 3940 |
msgstr ""
|
| 3941 |
|
| 3942 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3943 |
msgid "Kazakhstan Tenge"
|
| 3944 |
msgstr ""
|
| 3945 |
|
| 3946 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3947 |
msgid "Korea (North) Won"
|
| 3948 |
msgstr ""
|
| 3949 |
|
| 3950 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3951 |
msgid "Korea (South) Won"
|
| 3952 |
msgstr ""
|
| 3953 |
|
| 3954 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3955 |
msgid "Kyrgyzstan Som"
|
| 3956 |
msgstr ""
|
| 3957 |
|
| 3958 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3959 |
msgid "Laos Kip"
|
| 3960 |
msgstr ""
|
| 3961 |
|
| 3962 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3963 |
msgid "Latvia Lat"
|
| 3964 |
msgstr ""
|
| 3965 |
|
| 3966 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3967 |
msgid "Lebanon Pound"
|
| 3968 |
msgstr ""
|
| 3969 |
|
| 3970 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3971 |
msgid "Liberia Dollar"
|
| 3972 |
msgstr ""
|
| 3973 |
|
| 3974 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3975 |
msgid "Lithuania Litas"
|
| 3976 |
msgstr ""
|
| 3977 |
|
| 3978 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3979 |
msgid "Macedonia Denar"
|
| 3980 |
msgstr ""
|
| 3981 |
|
| 3982 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3983 |
msgid "Malaysia Ringgit"
|
| 3984 |
msgstr ""
|
| 3985 |
|
| 3986 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3987 |
msgid "Mauritius Rupee"
|
| 3988 |
msgstr ""
|
| 3989 |
|
| 3990 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3991 |
msgid "Mexico Peso"
|
| 3992 |
msgstr ""
|
| 3993 |
|
| 3994 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3995 |
msgid "Mongolia Tughrik"
|
| 3996 |
msgstr ""
|
| 3997 |
|
| 3998 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 3999 |
msgid "Mozambique Metical"
|
| 4000 |
msgstr ""
|
| 4001 |
|
| 4002 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4003 |
msgid "Namibia Dollar"
|
| 4004 |
msgstr ""
|
| 4005 |
|
| 4006 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4007 |
msgid "Nepal Rupee"
|
| 4008 |
msgstr ""
|
| 4009 |
|
| 4010 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4011 |
msgid "Netherlands Antilles Guilder"
|
| 4012 |
msgstr ""
|
| 4013 |
|
| 4014 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4015 |
msgid "New Zealand Dollar"
|
| 4016 |
msgstr ""
|
| 4017 |
|
| 4018 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4019 |
msgid "Nicaragua Cordoba"
|
| 4020 |
msgstr ""
|
| 4021 |
|
| 4022 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4023 |
msgid "Nigeria Naira"
|
| 4024 |
msgstr ""
|
| 4025 |
|
| 4026 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4027 |
msgid "Norway Krone"
|
| 4028 |
msgstr ""
|
| 4029 |
|
| 4030 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4031 |
msgid "Oman Rial"
|
| 4032 |
msgstr ""
|
| 4033 |
|
| 4034 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4035 |
msgid "Pakistan Rupee"
|
| 4036 |
msgstr ""
|
| 4037 |
|
| 4038 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4039 |
msgid "Panama Balboa"
|
| 4040 |
msgstr ""
|
| 4041 |
|
| 4042 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4043 |
msgid "Paraguay Guarani"
|
| 4044 |
msgstr ""
|
| 4045 |
|
| 4046 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4047 |
msgid "Peru Nuevo Sol"
|
| 4048 |
msgstr ""
|
| 4049 |
|
| 4050 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4051 |
msgid "Philippines Peso"
|
| 4052 |
msgstr ""
|
| 4053 |
|
| 4054 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4055 |
msgid "Poland Zloty"
|
| 4056 |
msgstr ""
|
| 4057 |
|
| 4058 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4059 |
msgid "Qatar Riyal"
|
| 4060 |
msgstr ""
|
| 4061 |
|
| 4062 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4063 |
msgid "Romania New Leu"
|
| 4064 |
msgstr ""
|
| 4065 |
|
| 4066 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4067 |
msgid "Russia Ruble"
|
| 4068 |
msgstr ""
|
| 4069 |
|
| 4070 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4071 |
msgid "Saint Helena Pound"
|
| 4072 |
msgstr ""
|
| 4073 |
|
| 4074 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4075 |
msgid "Saudi Arabia Riyal"
|
| 4076 |
msgstr ""
|
| 4077 |
|
| 4078 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4079 |
msgid "Serbia Dinar"
|
| 4080 |
msgstr ""
|
| 4081 |
|
| 4082 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4083 |
msgid "Seychelles Rupee"
|
| 4084 |
msgstr ""
|
| 4085 |
|
| 4086 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4087 |
msgid "Singapore Dollar"
|
| 4088 |
msgstr ""
|
| 4089 |
|
| 4090 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4091 |
msgid "Solomon Islands Dollar"
|
| 4092 |
msgstr ""
|
| 4093 |
|
| 4094 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4095 |
msgid "Somalia Shilling"
|
| 4096 |
msgstr ""
|
| 4097 |
|
| 4098 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4099 |
msgid "South Africa Rand"
|
| 4100 |
msgstr ""
|
| 4101 |
|
| 4102 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4103 |
msgid "Sri Lanka Rupee"
|
| 4104 |
msgstr ""
|
| 4105 |
|
| 4106 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4107 |
msgid "Sweden Krona"
|
| 4108 |
msgstr ""
|
| 4109 |
|
| 4110 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4111 |
msgid "Switzerland Franc"
|
| 4112 |
msgstr ""
|
| 4113 |
|
| 4114 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4115 |
msgid "Suriname Dollar"
|
| 4116 |
msgstr ""
|
| 4117 |
|
| 4118 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4119 |
msgid "Syria Pound"
|
| 4120 |
msgstr ""
|
| 4121 |
|
| 4122 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4123 |
msgid "Taiwan New Dollar"
|
| 4124 |
msgstr ""
|
| 4125 |
|
| 4126 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4127 |
msgid "Thailand Baht"
|
| 4128 |
msgstr ""
|
| 4129 |
|
| 4130 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4131 |
msgid "Trinidad and Tobago Dollar"
|
| 4132 |
msgstr ""
|
| 4133 |
|
| 4134 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4135 |
msgid "Turkey Lira"
|
| 4136 |
msgstr ""
|
| 4137 |
|
| 4138 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4139 |
msgid "Tuvalu Dollar"
|
| 4140 |
msgstr ""
|
| 4141 |
|
| 4142 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4143 |
msgid "Ukraine Hryvna"
|
| 4144 |
msgstr ""
|
| 4145 |
|
| 4146 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4147 |
msgid "United Kingdom Pound"
|
| 4148 |
msgstr ""
|
| 4149 |
|
| 4150 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4151 |
msgid "Uganda Shilling"
|
| 4152 |
msgstr ""
|
| 4153 |
|
| 4154 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4155 |
msgid "US Dollar"
|
| 4156 |
msgstr ""
|
| 4157 |
|
| 4158 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4159 |
msgid "Uruguay Peso"
|
| 4160 |
msgstr ""
|
| 4161 |
|
| 4162 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4163 |
msgid "Uzbekistan Som"
|
| 4164 |
msgstr ""
|
| 4165 |
|
| 4166 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4167 |
msgid "Venezuela Bolivar"
|
| 4168 |
msgstr ""
|
| 4169 |
|
| 4170 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4171 |
msgid "Viet Nam Dong"
|
| 4172 |
msgstr ""
|
| 4173 |
|
| 4174 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4175 |
msgid "Yemen Rial"
|
| 4176 |
msgstr ""
|
| 4177 |
|
| 4178 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4179 |
msgid "Zimbabwe Dollar"
|
| 4180 |
msgstr ""
|
| 4181 |
|
| 4182 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4183 |
msgid ""
|
| 4184 |
"You must select a field\n"
|
| 4185 |
""
|
| 4186 |
msgstr ""
|
| 4187 |
|
| 4188 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4189 |
msgid ""
|
| 4190 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
| 4191 |
""
|
| 4192 |
msgstr ""
|
| 4193 |
|
| 4194 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4195 |
msgid ""
|
| 4196 |
"The entered avatar size is not between 20 and 200\n"
|
| 4197 |
""
|
| 4198 |
msgstr ""
|
| 4199 |
|
| 4200 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4201 |
msgid ""
|
| 4202 |
"The entered avatar size is not numerical\n"
|
| 4203 |
""
|
| 4204 |
msgstr ""
|
| 4205 |
|
| 4206 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4207 |
msgid ""
|
| 4208 |
"The entered row number is not numerical\n"
|
| 4209 |
""
|
| 4210 |
msgstr ""
|
| 4211 |
|
| 4212 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4213 |
msgid ""
|
| 4214 |
"You must enter a value for the row number\n"
|
| 4215 |
""
|
| 4216 |
msgstr ""
|
| 4217 |
|
| 4218 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4219 |
msgid ""
|
| 4220 |
"You must enter the site key\n"
|
| 4221 |
""
|
| 4222 |
msgstr ""
|
| 4223 |
|
| 4224 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4225 |
msgid ""
|
| 4226 |
"You must enter the secret key\n"
|
| 4227 |
""
|
| 4228 |
msgstr ""
|
| 4229 |
|
| 4230 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4231 |
msgid ""
|
| 4232 |
"The entered value for the Datepicker is not a valid date-format\n"
|
| 4233 |
""
|
| 4234 |
msgstr ""
|
| 4235 |
|
| 4236 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4237 |
msgid ""
|
| 4238 |
"You must enter a value for the date-format\n"
|
| 4239 |
""
|
| 4240 |
msgstr ""
|
| 4241 |
|
| 4242 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4243 |
msgid ""
|
| 4244 |
"The meta-name cannot be empty\n"
|
| 4245 |
""
|
| 4246 |
msgstr ""
|
| 4247 |
|
| 4248 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4249 |
msgid ""
|
| 4250 |
"That meta-name is already in use\n"
|
| 4251 |
""
|
| 4252 |
msgstr ""
|
| 4253 |
|
| 4254 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4255 |
msgid ""
|
| 4256 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
| 4257 |
""
|
| 4258 |
msgstr ""
|
| 4259 |
|
| 4260 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4261 |
msgid ""
|
| 4262 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
| 4263 |
""
|
| 4264 |
msgstr ""
|
| 4265 |
|
| 4266 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4267 |
msgid ""
|
| 4268 |
"The following option did not coincide with the ones in the options list: %s\n"
|
| 4269 |
""
|
| 4270 |
msgstr ""
|
| 4271 |
|
| 4272 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4273 |
msgid ""
|
| 4274 |
"Please select at least one user role\n"
|
| 4275 |
""
|
| 4276 |
msgstr ""
|
| 4277 |
|
| 4278 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4279 |
msgid ""
|
| 4280 |
"That field is already added in this form\n"
|
| 4281 |
""
|
| 4282 |
msgstr ""
|
| 4283 |
|
| 4284 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4285 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
| 4286 |
msgstr ""
|
| 4287 |
|
| 4288 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4289 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
| 4290 |
msgstr ""
|
| 4291 |
|
| 4292 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4293 |
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."
|
| 4294 |
msgstr ""
|
| 4295 |
|
| 4296 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4297 |
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."
|
| 4298 |
msgstr ""
|
| 4299 |
|
| 4300 |
-
#: ../profile-builder-2.0/admin/manage-fields.php:
|
| 4301 |
msgid "Search Location"
|
| 4302 |
msgstr ""
|
| 4303 |
|
|
@@ -4413,7 +4441,7 @@ msgstr ""
|
|
| 4413 |
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."
|
| 4414 |
msgstr ""
|
| 4415 |
|
| 4416 |
-
#: ../profile-builder-2.0/admin/private-website.php:127, ../profile-builder-2.0/features/functions.php:762, ../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:394
|
| 4417 |
msgid "Save Changes"
|
| 4418 |
msgstr ""
|
| 4419 |
|
|
@@ -4581,7 +4609,7 @@ msgstr ""
|
|
| 4581 |
msgid "You must be logged in to edit your profile."
|
| 4582 |
msgstr ""
|
| 4583 |
|
| 4584 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:263, ../profile-builder-2.0/front-end/login.php:
|
| 4585 |
msgid "You are not allowed to do this."
|
| 4586 |
msgstr ""
|
| 4587 |
|
|
@@ -4617,63 +4645,67 @@ msgstr ""
|
|
| 4617 |
msgid "User to edit:"
|
| 4618 |
msgstr ""
|
| 4619 |
|
| 4620 |
-
#: ../profile-builder-2.0/front-end/class-formbuilder.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4621 |
msgid "Something went wrong. Please try again!"
|
| 4622 |
msgstr ""
|
| 4623 |
|
| 4624 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4625 |
msgid "ERROR"
|
| 4626 |
msgstr ""
|
| 4627 |
|
| 4628 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4629 |
msgid "The password you entered is incorrect."
|
| 4630 |
msgstr ""
|
| 4631 |
|
| 4632 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4633 |
-
msgid "
|
| 4634 |
msgstr ""
|
| 4635 |
|
| 4636 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4637 |
-
msgid "
|
| 4638 |
msgstr ""
|
| 4639 |
|
| 4640 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4641 |
msgid "Invalid username."
|
| 4642 |
msgstr ""
|
| 4643 |
|
| 4644 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4645 |
-
msgid "
|
| 4646 |
-
msgstr ""
|
| 4647 |
-
|
| 4648 |
-
#: ../profile-builder-2.0/front-end/login.php:320
|
| 4649 |
-
msgid "email"
|
| 4650 |
msgstr ""
|
| 4651 |
|
| 4652 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4653 |
-
msgid "
|
| 4654 |
msgstr ""
|
| 4655 |
|
| 4656 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4657 |
msgid "Both fields are empty."
|
| 4658 |
msgstr ""
|
| 4659 |
|
| 4660 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4661 |
msgid "Username or Email"
|
| 4662 |
msgstr ""
|
| 4663 |
|
| 4664 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4665 |
msgid "Lost your password?"
|
| 4666 |
msgstr ""
|
| 4667 |
|
| 4668 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4669 |
msgid "Log out of this account"
|
| 4670 |
msgstr ""
|
| 4671 |
|
| 4672 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4673 |
msgid "Log out"
|
| 4674 |
msgstr ""
|
| 4675 |
|
| 4676 |
-
#: ../profile-builder-2.0/front-end/login.php:
|
| 4677 |
msgid "You are currently logged in as %1$s. %2$s"
|
| 4678 |
msgstr ""
|
| 4679 |
|
|
@@ -4805,7 +4837,7 @@ msgstr ""
|
|
| 4805 |
msgid "Your email was successfully confirmed."
|
| 4806 |
msgstr ""
|
| 4807 |
|
| 4808 |
-
#: ../profile-builder-2.0/front-end/register.php:125, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
| 4809 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
| 4810 |
msgstr ""
|
| 4811 |
|
|
@@ -4837,6 +4869,306 @@ msgstr ""
|
|
| 4837 |
msgid "Inactive"
|
| 4838 |
msgstr ""
|
| 4839 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4840 |
#: ../profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
|
| 4841 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
| 4842 |
msgstr ""
|
|
@@ -5217,19 +5549,19 @@ msgstr ""
|
|
| 5217 |
msgid "[%1$s] Your new account information"
|
| 5218 |
msgstr ""
|
| 5219 |
|
| 5220 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:580, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
| 5221 |
msgid "Your selected password at signup"
|
| 5222 |
msgstr ""
|
| 5223 |
|
| 5224 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
| 5225 |
-
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
|
| 5226 |
msgstr ""
|
| 5227 |
|
| 5228 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
| 5229 |
-
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password
|
| 5230 |
msgstr ""
|
| 5231 |
|
| 5232 |
-
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:
|
| 5233 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
| 5234 |
msgstr ""
|
| 5235 |
|
|
@@ -5569,15 +5901,19 @@ msgid ""
|
|
| 5569 |
""
|
| 5570 |
msgstr ""
|
| 5571 |
|
| 5572 |
-
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:72, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:
|
| 5573 |
msgid "Email Subject"
|
| 5574 |
msgstr ""
|
| 5575 |
|
| 5576 |
-
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5577 |
msgid "Default Registration & Registration with Email Confirmation"
|
| 5578 |
msgstr ""
|
| 5579 |
|
| 5580 |
-
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:
|
| 5581 |
msgid ""
|
| 5582 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
| 5583 |
"<p>Username:{{username}}</p>\n"
|
|
@@ -5586,18 +5922,18 @@ msgid ""
|
|
| 5586 |
"so please remember that you need to approve this user before he/she can log in!</p>"
|
| 5587 |
msgstr ""
|
| 5588 |
|
| 5589 |
-
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:
|
| 5590 |
msgid "Registration with Admin Approval"
|
| 5591 |
msgstr ""
|
| 5592 |
|
| 5593 |
-
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:
|
| 5594 |
msgid ""
|
| 5595 |
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
| 5596 |
"<p>His/her new password is: {{password}}</p>\n"
|
| 5597 |
""
|
| 5598 |
msgstr ""
|
| 5599 |
|
| 5600 |
-
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:
|
| 5601 |
msgid "Admin Notification for User Password Reset"
|
| 5602 |
msgstr ""
|
| 5603 |
|
|
@@ -5688,7 +6024,7 @@ msgid ""
|
|
| 5688 |
""
|
| 5689 |
msgstr ""
|
| 5690 |
|
| 5691 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5692 |
msgid ""
|
| 5693 |
"<p>To activate your user, please click the following link:<br/>\n"
|
| 5694 |
"{{{activation_link}}}</p>\n"
|
|
@@ -5696,15 +6032,15 @@ msgid ""
|
|
| 5696 |
""
|
| 5697 |
msgstr ""
|
| 5698 |
|
| 5699 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5700 |
msgid "[{{site_name}}] Activate {{username}}"
|
| 5701 |
msgstr ""
|
| 5702 |
|
| 5703 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5704 |
msgid "Registration with Email Confirmation"
|
| 5705 |
msgstr ""
|
| 5706 |
|
| 5707 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5708 |
msgid ""
|
| 5709 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
| 5710 |
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
|
@@ -5712,41 +6048,41 @@ msgid ""
|
|
| 5712 |
""
|
| 5713 |
msgstr ""
|
| 5714 |
|
| 5715 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5716 |
msgid "A new account has been created for you on {{site_name}}"
|
| 5717 |
msgstr ""
|
| 5718 |
|
| 5719 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5720 |
msgid ""
|
| 5721 |
"<h3>Good News!</h3>\n"
|
| 5722 |
"<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
|
| 5723 |
""
|
| 5724 |
msgstr ""
|
| 5725 |
|
| 5726 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5727 |
msgid "Your account on {{site_name}} has been approved!"
|
| 5728 |
msgstr ""
|
| 5729 |
|
| 5730 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5731 |
msgid "User Approval Notification"
|
| 5732 |
msgstr ""
|
| 5733 |
|
| 5734 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5735 |
msgid ""
|
| 5736 |
"<h3>Hello,</h3>\n"
|
| 5737 |
"<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
|
| 5738 |
""
|
| 5739 |
msgstr ""
|
| 5740 |
|
| 5741 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5742 |
msgid "Your account on {{site_name}} has been unapproved!"
|
| 5743 |
msgstr ""
|
| 5744 |
|
| 5745 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5746 |
msgid "Unapproved User Notification"
|
| 5747 |
msgstr ""
|
| 5748 |
|
| 5749 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5750 |
msgid ""
|
| 5751 |
"<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
|
| 5752 |
"Username: {{username}}</p>\n"
|
|
@@ -5756,29 +6092,29 @@ msgid ""
|
|
| 5756 |
""
|
| 5757 |
msgstr ""
|
| 5758 |
|
| 5759 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5760 |
msgid "[{{site_name}}] Password Reset"
|
| 5761 |
msgstr ""
|
| 5762 |
|
| 5763 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5764 |
msgid "Password Reset Email"
|
| 5765 |
msgstr ""
|
| 5766 |
|
| 5767 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5768 |
msgid ""
|
| 5769 |
"<p>You have successfully reset your password.</p>\n"
|
| 5770 |
""
|
| 5771 |
msgstr ""
|
| 5772 |
|
| 5773 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5774 |
msgid "[{{site_name}}] Password Reset Successfully"
|
| 5775 |
msgstr ""
|
| 5776 |
|
| 5777 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5778 |
msgid "Password Reset Success Email"
|
| 5779 |
msgstr ""
|
| 5780 |
|
| 5781 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5782 |
msgid ""
|
| 5783 |
"<h3>Hi {{username}},</h3>\n"
|
| 5784 |
"<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
|
|
@@ -5789,11 +6125,11 @@ msgid ""
|
|
| 5789 |
"<a href=\"{{site_url}}\">{{site_url}}</a></p>"
|
| 5790 |
msgstr ""
|
| 5791 |
|
| 5792 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5793 |
msgid "[{{site_name}}] Notice of Email Change"
|
| 5794 |
msgstr ""
|
| 5795 |
|
| 5796 |
-
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:
|
| 5797 |
msgid "Changed Email Address Notification"
|
| 5798 |
msgstr ""
|
| 5799 |
|
|
@@ -6397,7 +6733,7 @@ msgstr ""
|
|
| 6397 |
msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
|
| 6398 |
msgstr ""
|
| 6399 |
|
| 6400 |
-
#: ../profile-builder-2.0/front-end/default-fields/email/email.php:51
|
| 6401 |
msgid "You must enter a valid email address."
|
| 6402 |
msgstr ""
|
| 6403 |
|
|
@@ -6461,6 +6797,10 @@ msgstr ""
|
|
| 6461 |
msgid "This username is already reserved to be used soon."
|
| 6462 |
msgstr ""
|
| 6463 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6464 |
#: ../profile-builder-2.0/front-end/extra-fields/map/map.php:46, ../profile-builder-2.0/front-end/extra-fields/map/map.php:69
|
| 6465 |
msgid "Please add the Google Maps API key for this field."
|
| 6466 |
msgstr ""
|
| 85 |
msgid "Registration form:"
|
| 86 |
msgstr ""
|
| 87 |
|
| 88 |
+
#: ../pb-add-on-buddypress/buddypress-page.php:65, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:96
|
| 89 |
msgid "Default Registration"
|
| 90 |
msgstr ""
|
| 91 |
|
| 209 |
msgid "BuddyPress needs to be installed and activated for Profile Builder - BuddyPress Integration Add-on to work as expected!"
|
| 210 |
msgstr ""
|
| 211 |
|
| 212 |
+
#: ../pb-add-on-buddypress/index.php:511, ../pb-add-on-campaign-monitor-integration/admin/widget.php:226, ../pb-add-on-campaign-monitor-integration/admin/widget.php:228, ../profile-builder-2.0/admin/manage-fields.php:244
|
| 213 |
msgid "Name"
|
| 214 |
msgstr ""
|
| 215 |
|
| 233 |
msgid "Display name:"
|
| 234 |
msgstr ""
|
| 235 |
|
| 236 |
+
#: ../pb-add-on-buddypress/index.php:534, ../profile-builder-2.0/admin/manage-fields.php:250
|
| 237 |
msgid "Contact Info"
|
| 238 |
msgstr ""
|
| 239 |
|
| 241 |
msgid "Website:"
|
| 242 |
msgstr ""
|
| 243 |
|
| 244 |
+
#: ../pb-add-on-buddypress/index.php:541, ../profile-builder-2.0/admin/manage-fields.php:261
|
| 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:420, ../profile-builder-2.0/front-end/login.php:421
|
| 373 |
msgid "Register"
|
| 374 |
msgstr ""
|
| 375 |
|
| 389 |
msgid "Width (px)"
|
| 390 |
msgstr ""
|
| 391 |
|
| 392 |
+
#: index.php:39
|
| 393 |
+
msgid "Forms"
|
| 394 |
+
msgstr ""
|
| 395 |
+
|
| 396 |
+
#: index.php:40
|
| 397 |
+
msgid "Fields"
|
| 398 |
+
msgstr ""
|
| 399 |
+
|
| 400 |
+
#: index.php:41
|
| 401 |
+
msgid "Emails"
|
| 402 |
+
msgstr ""
|
| 403 |
+
|
| 404 |
+
#: index.php:42
|
| 405 |
+
msgid "Userlisting"
|
| 406 |
+
msgstr ""
|
| 407 |
+
|
| 408 |
+
#: index.php:43
|
| 409 |
+
msgid "Shortcodes"
|
| 410 |
+
msgstr ""
|
| 411 |
+
|
| 412 |
+
#: index.php:61, index.php:71
|
| 413 |
+
msgid "Customization Toolbox"
|
| 414 |
+
msgstr ""
|
| 415 |
+
|
| 416 |
+
#: index.php:61
|
| 417 |
+
msgid "Toolbox"
|
| 418 |
+
msgstr ""
|
| 419 |
+
|
| 420 |
+
#: index.php:147, ../pb-add-on-social-connect/index.php:236, ../profile-builder-2.0/admin/admin-functions.php:226, ../profile-builder-2.0/admin/general-settings.php:76, ../profile-builder-2.0/admin/general-settings.php:76
|
| 421 |
+
msgid "Settings"
|
| 422 |
+
msgstr ""
|
| 423 |
+
|
| 424 |
#: ../pb-add-on-email-confirmation-field/index.php:83
|
| 425 |
msgid "The email confirmation does not match your email address."
|
| 426 |
msgstr ""
|
| 453 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre><pre class=\"wppb-mb-head-visibility\"></pre>"
|
| 454 |
msgstr ""
|
| 455 |
|
| 456 |
+
#: ../pb-add-on-field-visibility/index.php:223, ../pb-add-on-labels-edit/pble.php:354, ../profile-builder-2.0/admin/manage-fields.php:1239, ../profile-builder-2.0/features/functions.php:783, ../profile-builder-2.0/features/functions.php:790, ../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:223, ../profile-builder-2.0/admin/manage-fields.php:1239, ../profile-builder-2.0/features/functions.php:776, ../profile-builder-2.0/features/functions.php:790, ../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
|
| 461 |
msgid "Delete"
|
| 462 |
msgstr ""
|
| 463 |
|
| 485 |
msgid "You do not have the capabilities necessary to edit this field."
|
| 486 |
msgstr ""
|
| 487 |
|
| 488 |
+
#: ../pb-add-on-import-export/pbie-export.php:117
|
| 489 |
msgid "Export Profile Builder options as a .json file. This allows you to easily import the configuration into another site."
|
| 490 |
msgstr ""
|
| 491 |
|
| 492 |
+
#: ../pb-add-on-import-export/pbie-export.php:119, ../pb-add-on-import-export/pbie.php:55, ../pb-add-on-labels-edit/pble.php:318
|
| 493 |
msgid "Export"
|
| 494 |
msgstr ""
|
| 495 |
|
| 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:173
|
| 571 |
msgid "Labels"
|
| 572 |
msgstr ""
|
| 573 |
|
| 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:323, ../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-emails.php:18, includes/views/view-fields.php:18, includes/views/view-fields.php:35, includes/views/view-fields.php:57, includes/views/view-fields.php:77, includes/views/view-forms.php:131, includes/views/view-forms.php:146, includes/views/view-forms.php:162, includes/views/view-forms.php:200, includes/views/view-forms.php:221, includes/views/view-forms.php:241, includes/views/view-forms.php:263, 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:2339
|
| 689 |
msgid "Yes"
|
| 690 |
msgstr ""
|
| 691 |
|
| 829 |
msgid "Default Social Connect CSS in the Front-end"
|
| 830 |
msgstr ""
|
| 831 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 832 |
#: ../pb-add-on-social-connect/index.php:250
|
| 833 |
msgid "Help"
|
| 834 |
msgstr ""
|
| 941 |
msgid "Country"
|
| 942 |
msgstr ""
|
| 943 |
|
| 944 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, ../profile-builder-2.0/admin/manage-fields.php:246, includes/views/view-fields.php:118
|
| 945 |
msgid "First Name"
|
| 946 |
msgstr ""
|
| 947 |
|
| 948 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, ../profile-builder-2.0/admin/manage-fields.php:247, includes/views/view-fields.php:124
|
| 949 |
msgid "Last Name"
|
| 950 |
msgstr ""
|
| 951 |
|
| 981 |
msgid "Ship to a different address?"
|
| 982 |
msgstr ""
|
| 983 |
|
| 984 |
+
#: ../pb-add-on-woocommerce/index.php:166, ../pb-add-on-woocommerce/index.php:735
|
| 985 |
msgid "Billing Address"
|
| 986 |
msgstr ""
|
| 987 |
|
| 988 |
+
#: ../pb-add-on-woocommerce/index.php:166
|
| 989 |
msgid "Displays customer billing fields in front-end. "
|
| 990 |
msgstr ""
|
| 991 |
|
| 992 |
+
#: ../pb-add-on-woocommerce/index.php:170, ../pb-add-on-woocommerce/index.php:736
|
| 993 |
msgid "Shipping Address"
|
| 994 |
msgstr ""
|
| 995 |
|
| 996 |
+
#: ../pb-add-on-woocommerce/index.php:170
|
| 997 |
msgid "Displays customer shipping fields in front-end. "
|
| 998 |
msgstr ""
|
| 999 |
|
| 1000 |
+
#: ../pb-add-on-woocommerce/index.php:245, ../pb-add-on-woocommerce/index.php:264, ../pb-add-on-woocommerce/index.php:361, ../pb-add-on-woocommerce/index.php:364, ../pb-add-on-woocommerce/index.php:791
|
| 1001 |
msgid "Address line 2"
|
| 1002 |
msgstr ""
|
| 1003 |
|
| 1004 |
+
#: ../pb-add-on-woocommerce/index.php:253
|
| 1005 |
msgid "Billing Fields"
|
| 1006 |
msgstr ""
|
| 1007 |
|
| 1008 |
+
#: ../pb-add-on-woocommerce/index.php:253
|
| 1009 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
+
#: ../pb-add-on-woocommerce/index.php:254
|
| 1013 |
msgid "Billing Fields Order"
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
+
#: ../pb-add-on-woocommerce/index.php:254
|
| 1017 |
msgid "Save the billing fields order from the billing fields checkboxes"
|
| 1018 |
msgstr ""
|
| 1019 |
|
| 1020 |
+
#: ../pb-add-on-woocommerce/index.php:255
|
| 1021 |
msgid "Billing Fields Name"
|
| 1022 |
msgstr ""
|
| 1023 |
|
| 1024 |
+
#: ../pb-add-on-woocommerce/index.php:255
|
| 1025 |
msgid "Save the billing fields names"
|
| 1026 |
msgstr ""
|
| 1027 |
|
| 1028 |
+
#: ../pb-add-on-woocommerce/index.php:272
|
| 1029 |
msgid "Shipping Fields"
|
| 1030 |
msgstr ""
|
| 1031 |
|
| 1032 |
+
#: ../pb-add-on-woocommerce/index.php:272
|
| 1033 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
+
#: ../pb-add-on-woocommerce/index.php:273
|
| 1037 |
msgid "Shipping Fields Order"
|
| 1038 |
msgstr ""
|
| 1039 |
|
| 1040 |
+
#: ../pb-add-on-woocommerce/index.php:273
|
| 1041 |
msgid "Save the shipping fields order from the billing fields checkboxes"
|
| 1042 |
msgstr ""
|
| 1043 |
|
| 1044 |
+
#: ../pb-add-on-woocommerce/index.php:274
|
| 1045 |
msgid "Shipping Fields Name"
|
| 1046 |
msgstr ""
|
| 1047 |
|
| 1048 |
+
#: ../pb-add-on-woocommerce/index.php:274
|
| 1049 |
msgid "Save the shipping fields names"
|
| 1050 |
msgstr ""
|
| 1051 |
|
| 1052 |
+
#: ../pb-add-on-woocommerce/index.php:302
|
| 1053 |
msgid "Field Name"
|
| 1054 |
msgstr ""
|
| 1055 |
|
| 1056 |
+
#: ../pb-add-on-woocommerce/index.php:303, ../profile-builder-2.0/admin/manage-fields.php:204
|
| 1057 |
msgid "Required"
|
| 1058 |
msgstr ""
|
| 1059 |
|
| 1060 |
+
#: ../pb-add-on-woocommerce/index.php:366
|
| 1061 |
msgid "Click to edit "
|
| 1062 |
msgstr ""
|
| 1063 |
|
| 1064 |
+
#: ../pb-add-on-woocommerce/index.php:390, ../profile-builder-2.0/front-end/default-fields/email/email.php:47
|
| 1065 |
msgid "The email you entered is not a valid email address."
|
| 1066 |
msgstr ""
|
| 1067 |
|
| 1068 |
+
#: ../pb-add-on-woocommerce/index.php:648
|
| 1069 |
msgid "No options available. Please select one country."
|
| 1070 |
msgstr ""
|
| 1071 |
|
| 1072 |
+
#: ../pb-add-on-woocommerce/index.php:667, ../pb-add-on-woocommerce/index.php:692
|
| 1073 |
msgid "Billing "
|
| 1074 |
msgstr ""
|
| 1075 |
|
| 1076 |
+
#: ../pb-add-on-woocommerce/index.php:675, ../pb-add-on-woocommerce/index.php:699
|
| 1077 |
msgid "Shipping "
|
| 1078 |
msgstr ""
|
| 1079 |
|
| 1080 |
+
#: ../pb-add-on-woocommerce/index.php:852
|
| 1081 |
msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
|
| 1082 |
msgstr ""
|
| 1083 |
|
| 1323 |
msgid "The Campaign Monitor API key is either missing or is invalid."
|
| 1324 |
msgstr ""
|
| 1325 |
|
| 1326 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29
|
| 1327 |
msgid "Communication Preferences"
|
| 1328 |
msgstr ""
|
| 1329 |
|
| 1330 |
+
#: ../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:251, ../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
|
| 1331 |
msgid "E-mail"
|
| 1332 |
msgstr ""
|
| 1333 |
|
| 1334 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9
|
| 1335 |
msgid "Telephone"
|
| 1336 |
msgstr ""
|
| 1337 |
|
| 1338 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9
|
| 1339 |
msgid "SMS"
|
| 1340 |
msgstr ""
|
| 1341 |
|
| 1342 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9
|
| 1343 |
msgid "Post"
|
| 1344 |
msgstr ""
|
| 1345 |
|
| 1346 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29
|
| 1347 |
msgid "Select which communication preferences are available on your site ( drag and drop to re-order )"
|
| 1348 |
msgstr ""
|
| 1349 |
|
| 1350 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:30
|
| 1351 |
msgid "Communication Preferences Order"
|
| 1352 |
msgstr ""
|
| 1353 |
|
| 1354 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:30
|
| 1355 |
msgid "Save the communication preferences order"
|
| 1356 |
msgstr ""
|
| 1357 |
|
| 1358 |
+
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:44, ../pb-add-on-select2/front-end/select2-field.php:72, ../pb-add-on-select2/front-end/select2-multiple-field.php:87, ../profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:74, ../profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:46, ../profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45, ../profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40, ../profile-builder-2.0/front-end/extra-fields/input/input.php:30, ../profile-builder-2.0/front-end/extra-fields/input-email/input-email.php:30, ../profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34, ../profile-builder-2.0/front-end/extra-fields/input-url/input-url.php:30, ../profile-builder-2.0/front-end/extra-fields/map/map.php:51, ../profile-builder-2.0/front-end/extra-fields/number/number.php:30, ../profile-builder-2.0/front-end/extra-fields/phone/phone.php:39, ../profile-builder-2.0/front-end/extra-fields/radio/radio.php:44, ../profile-builder-2.0/front-end/extra-fields/select/select.php:51, ../profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:58, ../profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:47, ../profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49, ../profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30, ../profile-builder-2.0/front-end/extra-fields/upload/upload.php:70, ../profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
|
| 1359 |
msgid "required"
|
| 1360 |
msgstr ""
|
| 1361 |
|
| 1362 |
+
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:68
|
| 1363 |
msgid "Date"
|
| 1364 |
msgstr ""
|
| 1365 |
|
| 1366 |
+
#: ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:68
|
| 1367 |
msgid "Preference"
|
| 1368 |
msgstr ""
|
| 1369 |
|
| 1803 |
msgid "Docs"
|
| 1804 |
msgstr ""
|
| 1805 |
|
| 1806 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:260
|
| 1807 |
+
msgid "Check out the Customization Toolbox add-on which packs the most popular customization requests from Profile Builder."
|
| 1808 |
msgstr ""
|
| 1809 |
|
| 1810 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:262
|
| 1811 |
+
msgid "See details"
|
| 1812 |
msgstr ""
|
| 1813 |
|
| 1814 |
+
#: ../profile-builder-2.0/admin/admin-functions.php:263
|
| 1815 |
msgid "Dismiss this notice."
|
| 1816 |
msgstr ""
|
| 1817 |
|
| 2251 |
msgid "Username and Email"
|
| 2252 |
msgstr ""
|
| 2253 |
|
| 2254 |
+
#: ../profile-builder-2.0/admin/general-settings.php:249, ../profile-builder-2.0/admin/manage-fields.php:245, ../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:112, ../profile-builder-2.0/features/admin-approval/class-admin-approval.php:166, ../profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168, ../profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:60, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:28, ../profile-builder-2.0/modules/user-listing/userlisting.php:111, ../profile-builder-2.0/modules/user-listing/userlisting.php:303, ../profile-builder-2.0/modules/user-listing/userlisting.php:778, ../profile-builder-2.0/modules/user-listing/userlisting.php:2290
|
| 2255 |
msgid "Username"
|
| 2256 |
msgstr ""
|
| 2257 |
|
| 2258 |
+
#: ../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:784, ../profile-builder-2.0/modules/user-listing/userlisting.php:2291
|
| 2259 |
msgid "Email"
|
| 2260 |
msgstr ""
|
| 2261 |
|
| 2295 |
msgid "Manage Form Fields"
|
| 2296 |
msgstr ""
|
| 2297 |
|
| 2298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:119
|
| 2299 |
msgid "Choose one of the supported field types"
|
| 2300 |
msgstr ""
|
| 2301 |
|
| 2302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:121
|
| 2303 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
| 2304 |
msgstr ""
|
| 2305 |
|
| 2306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:152
|
| 2307 |
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"
|
| 2308 |
msgstr ""
|
| 2309 |
|
| 2310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:155
|
| 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 will only affect subsequent entries"
|
| 2312 |
msgstr ""
|
| 2313 |
|
| 2314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:161
|
| 2315 |
msgid "Field Title"
|
| 2316 |
msgstr ""
|
| 2317 |
|
| 2318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:161
|
| 2319 |
msgid "Title of the field"
|
| 2320 |
msgstr ""
|
| 2321 |
|
| 2322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:162, ../profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245, ../profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
| 2323 |
msgid "Field"
|
| 2324 |
msgstr ""
|
| 2325 |
|
| 2326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:163
|
| 2327 |
msgid "Meta-name"
|
| 2328 |
msgstr ""
|
| 2329 |
|
| 2330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:164, ../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
|
| 2331 |
msgid "ID"
|
| 2332 |
msgstr ""
|
| 2333 |
|
| 2334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:164, ../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 "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"
|
| 2336 |
msgstr ""
|
| 2337 |
|
| 2338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:165
|
| 2339 |
msgid "Description"
|
| 2340 |
msgstr ""
|
| 2341 |
|
| 2342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:165
|
| 2343 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
| 2344 |
msgstr ""
|
| 2345 |
|
| 2346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
| 2347 |
msgid "Row Count"
|
| 2348 |
msgstr ""
|
| 2349 |
|
| 2350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:166
|
| 2351 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
| 2352 |
msgstr ""
|
| 2353 |
|
| 2354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:167
|
| 2355 |
msgid "Allowed Image Extensions"
|
| 2356 |
msgstr ""
|
| 2357 |
|
| 2358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:167
|
| 2359 |
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 (.*)"
|
| 2360 |
msgstr ""
|
| 2361 |
|
| 2362 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
| 2363 |
msgid "Allowed Upload Extensions"
|
| 2364 |
msgstr ""
|
| 2365 |
|
| 2366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:168
|
| 2367 |
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 (.*)"
|
| 2368 |
msgstr ""
|
| 2369 |
|
| 2370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
| 2371 |
msgid "Avatar Size"
|
| 2372 |
msgstr ""
|
| 2373 |
|
| 2374 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:169
|
| 2375 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
| 2376 |
msgstr ""
|
| 2377 |
|
| 2378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
| 2379 |
msgid "Date-format"
|
| 2380 |
msgstr ""
|
| 2381 |
|
| 2382 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:170
|
| 2383 |
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"
|
| 2384 |
msgstr ""
|
| 2385 |
|
| 2386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:171
|
| 2387 |
msgid "Terms of Agreement"
|
| 2388 |
msgstr ""
|
| 2389 |
|
| 2390 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:171
|
| 2391 |
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>"
|
| 2392 |
msgstr ""
|
| 2393 |
|
| 2394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:172
|
| 2395 |
msgid "Options"
|
| 2396 |
msgstr ""
|
| 2397 |
|
| 2398 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:172
|
| 2399 |
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"
|
| 2400 |
msgstr ""
|
| 2401 |
|
| 2402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:173
|
| 2403 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
| 2404 |
msgstr ""
|
| 2405 |
|
| 2406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:174
|
| 2407 |
msgid "reCAPTCHA Type"
|
| 2408 |
msgstr ""
|
| 2409 |
|
| 2410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:174
|
| 2411 |
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."
|
| 2412 |
msgstr ""
|
| 2413 |
|
| 2414 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:175
|
| 2415 |
msgid "Site Key"
|
| 2416 |
msgstr ""
|
| 2417 |
|
| 2418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:175
|
| 2419 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
| 2420 |
msgstr ""
|
| 2421 |
|
| 2422 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:176
|
| 2423 |
msgid "Secret Key"
|
| 2424 |
msgstr ""
|
| 2425 |
|
| 2426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:176
|
| 2427 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
| 2428 |
msgstr ""
|
| 2429 |
|
| 2430 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2431 |
msgid "Display on PB forms"
|
| 2432 |
msgstr ""
|
| 2433 |
|
| 2434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2435 |
msgid "PB Login"
|
| 2436 |
msgstr ""
|
| 2437 |
|
| 2438 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2439 |
msgid "PB Register"
|
| 2440 |
msgstr ""
|
| 2441 |
|
| 2442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2443 |
msgid "PB Recover Password"
|
| 2444 |
msgstr ""
|
| 2445 |
|
| 2446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:177
|
| 2447 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
| 2448 |
msgstr ""
|
| 2449 |
|
| 2450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178
|
| 2451 |
msgid "Display on default WP forms"
|
| 2452 |
msgstr ""
|
| 2453 |
|
| 2454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178
|
| 2455 |
msgid "Default WP Login"
|
| 2456 |
msgstr ""
|
| 2457 |
|
| 2458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178
|
| 2459 |
msgid "Default WP Register"
|
| 2460 |
msgstr ""
|
| 2461 |
|
| 2462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178
|
| 2463 |
msgid "Default WP Recover Password"
|
| 2464 |
msgstr ""
|
| 2465 |
|
| 2466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:178
|
| 2467 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
| 2468 |
msgstr ""
|
| 2469 |
|
| 2470 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:179
|
| 2471 |
msgid "User Roles"
|
| 2472 |
msgstr ""
|
| 2473 |
|
| 2474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:179
|
| 2475 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
| 2476 |
msgstr ""
|
| 2477 |
|
| 2478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:180
|
| 2479 |
msgid "User Roles Order"
|
| 2480 |
msgstr ""
|
| 2481 |
|
| 2482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:180
|
| 2483 |
msgid "Save the user role order from the user roles checkboxes"
|
| 2484 |
msgstr ""
|
| 2485 |
|
| 2486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:181
|
| 2487 |
msgid "Default Value"
|
| 2488 |
msgstr ""
|
| 2489 |
|
| 2490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:181
|
| 2491 |
msgid "Default value of the field"
|
| 2492 |
msgstr ""
|
| 2493 |
|
| 2494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:182, ../profile-builder-2.0/admin/manage-fields.php:184, ../profile-builder-2.0/admin/manage-fields.php:185, ../profile-builder-2.0/admin/manage-fields.php:186
|
| 2495 |
msgid "Default Option"
|
| 2496 |
msgstr ""
|
| 2497 |
|
| 2498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:182
|
| 2499 |
msgid "Specify the option which should be selected by default"
|
| 2500 |
msgstr ""
|
| 2501 |
|
| 2502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:183
|
| 2503 |
msgid "Default Option(s)"
|
| 2504 |
msgstr ""
|
| 2505 |
|
| 2506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:183
|
| 2507 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
| 2508 |
msgstr ""
|
| 2509 |
|
| 2510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:184, ../profile-builder-2.0/admin/manage-fields.php:185, ../profile-builder-2.0/admin/manage-fields.php:186
|
| 2511 |
msgid "Default option of the field"
|
| 2512 |
msgstr ""
|
| 2513 |
|
| 2514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:187
|
| 2515 |
msgid "Show Currency Symbol"
|
| 2516 |
msgstr ""
|
| 2517 |
|
| 2518 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:187
|
| 2519 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
| 2520 |
msgstr ""
|
| 2521 |
|
| 2522 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:188
|
| 2523 |
msgid "Show Post Type"
|
| 2524 |
msgstr ""
|
| 2525 |
|
| 2526 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:188
|
| 2527 |
msgid "Posts from what post type will be displayed in the select."
|
| 2528 |
msgstr ""
|
| 2529 |
|
| 2530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:189
|
| 2531 |
msgid "Allowable Values"
|
| 2532 |
msgstr ""
|
| 2533 |
|
| 2534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:189
|
| 2535 |
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."
|
| 2536 |
msgstr ""
|
| 2537 |
|
| 2538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:190
|
| 2539 |
msgid "Error Message"
|
| 2540 |
msgstr ""
|
| 2541 |
|
| 2542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:190
|
| 2543 |
msgid "Set a custom error message that will be displayed to the user."
|
| 2544 |
msgstr ""
|
| 2545 |
|
| 2546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:191
|
| 2547 |
msgid "Time Format"
|
| 2548 |
msgstr ""
|
| 2549 |
|
| 2550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:191
|
| 2551 |
msgid "Specify the time format."
|
| 2552 |
msgstr ""
|
| 2553 |
|
| 2554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:192
|
| 2555 |
msgid "Google Maps API Key"
|
| 2556 |
msgstr ""
|
| 2557 |
|
| 2558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:192
|
| 2559 |
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."
|
| 2560 |
msgstr ""
|
| 2561 |
|
| 2562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
| 2563 |
msgid "Default Latitude"
|
| 2564 |
msgstr ""
|
| 2565 |
|
| 2566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:193
|
| 2567 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
| 2568 |
msgstr ""
|
| 2569 |
|
| 2570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
| 2571 |
msgid "Default Longitude"
|
| 2572 |
msgstr ""
|
| 2573 |
|
| 2574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:194
|
| 2575 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
| 2576 |
msgstr ""
|
| 2577 |
|
| 2578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:195
|
| 2579 |
msgid "Default Zoom Level"
|
| 2580 |
msgstr ""
|
| 2581 |
|
| 2582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:195
|
| 2583 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
| 2584 |
msgstr ""
|
| 2585 |
|
| 2586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:196
|
| 2587 |
msgid "Map Height"
|
| 2588 |
msgstr ""
|
| 2589 |
|
| 2590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:196
|
| 2591 |
msgid "The height of the map."
|
| 2592 |
msgstr ""
|
| 2593 |
|
| 2594 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:197
|
| 2595 |
msgid "Default Content"
|
| 2596 |
msgstr ""
|
| 2597 |
|
| 2598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:197
|
| 2599 |
msgid "Default value of the textarea"
|
| 2600 |
msgstr ""
|
| 2601 |
|
| 2602 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:198
|
| 2603 |
msgid "HTML Content"
|
| 2604 |
msgstr ""
|
| 2605 |
|
| 2606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:198
|
| 2607 |
msgid "Add your HTML (or text) content"
|
| 2608 |
msgstr ""
|
| 2609 |
|
| 2610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:199
|
| 2611 |
msgid "Phone Format"
|
| 2612 |
msgstr ""
|
| 2613 |
|
| 2614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:199
|
| 2615 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
| 2616 |
msgstr ""
|
| 2617 |
|
| 2618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:199
|
| 2619 |
msgid "Eg. (###) ###-####"
|
| 2620 |
msgstr ""
|
| 2621 |
|
| 2622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:199
|
| 2623 |
msgid "Empty field won't check for correct phone number."
|
| 2624 |
msgstr ""
|
| 2625 |
|
| 2626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:200
|
| 2627 |
msgid "Heading Tag"
|
| 2628 |
msgstr ""
|
| 2629 |
|
| 2630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:200
|
| 2631 |
msgid "Change heading field size on front-end forms"
|
| 2632 |
msgstr ""
|
| 2633 |
|
| 2634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:201
|
| 2635 |
msgid "Min Number Value"
|
| 2636 |
msgstr ""
|
| 2637 |
|
| 2638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:201
|
| 2639 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
| 2640 |
msgstr ""
|
| 2641 |
|
| 2642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:201
|
| 2643 |
msgid "Leave it empty for no min value"
|
| 2644 |
msgstr ""
|
| 2645 |
|
| 2646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:202
|
| 2647 |
msgid "Max Number Value"
|
| 2648 |
msgstr ""
|
| 2649 |
|
| 2650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:202
|
| 2651 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
| 2652 |
msgstr ""
|
| 2653 |
|
| 2654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:202
|
| 2655 |
msgid "Leave it empty for no max value"
|
| 2656 |
msgstr ""
|
| 2657 |
|
| 2658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:203
|
| 2659 |
msgid "Number Step Value"
|
| 2660 |
msgstr ""
|
| 2661 |
|
| 2662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:203
|
| 2663 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
| 2664 |
msgstr ""
|
| 2665 |
|
| 2666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:203
|
| 2667 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
| 2668 |
msgstr ""
|
| 2669 |
|
| 2670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:203
|
| 2671 |
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)"
|
| 2672 |
msgstr ""
|
| 2673 |
|
| 2674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:203
|
| 2675 |
msgid "Leave it empty for no restriction"
|
| 2676 |
msgstr ""
|
| 2677 |
|
| 2678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:204
|
| 2679 |
msgid "Whether the field is required or not"
|
| 2680 |
msgstr ""
|
| 2681 |
|
| 2682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:205
|
| 2683 |
msgid "Overwrite Existing"
|
| 2684 |
msgstr ""
|
| 2685 |
|
| 2686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:205
|
| 2687 |
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"
|
| 2688 |
msgstr ""
|
| 2689 |
|
| 2690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:211
|
| 2691 |
msgid "Form Field Properties"
|
| 2692 |
msgstr ""
|
| 2693 |
|
| 2694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:225
|
| 2695 |
msgid "Registration & Edit Profile Forms"
|
| 2696 |
msgstr ""
|
| 2697 |
|
| 2698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:245
|
| 2699 |
msgid "Usernames cannot be changed."
|
| 2700 |
msgstr ""
|
| 2701 |
|
| 2702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:248, ../profile-builder-2.0/modules/user-listing/userlisting.php:817, ../profile-builder-2.0/modules/user-listing/userlisting.php:2298
|
| 2703 |
msgid "Nickname"
|
| 2704 |
msgstr ""
|
| 2705 |
|
| 2706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:249
|
| 2707 |
msgid "Display name publicly as"
|
| 2708 |
msgstr ""
|
| 2709 |
|
| 2710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:252, ../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:799, ../profile-builder-2.0/modules/user-listing/userlisting.php:2292
|
| 2711 |
msgid "Website"
|
| 2712 |
msgstr ""
|
| 2713 |
|
| 2714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:256
|
| 2715 |
msgid "AIM"
|
| 2716 |
msgstr ""
|
| 2717 |
|
| 2718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:257
|
| 2719 |
msgid "Yahoo IM"
|
| 2720 |
msgstr ""
|
| 2721 |
|
| 2722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:258
|
| 2723 |
msgid "Jabber / Google Talk"
|
| 2724 |
msgstr ""
|
| 2725 |
|
| 2726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:262, ../profile-builder-2.0/modules/user-listing/userlisting.php:123, ../profile-builder-2.0/modules/user-listing/userlisting.php:802, ../profile-builder-2.0/modules/user-listing/userlisting.php:2293
|
| 2727 |
msgid "Biographical Info"
|
| 2728 |
msgstr ""
|
| 2729 |
|
| 2730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:262
|
| 2731 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
| 2732 |
msgstr ""
|
| 2733 |
|
| 2734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:263, ../profile-builder-2.0/front-end/recover.php:73, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:30
|
| 2735 |
msgid "Password"
|
| 2736 |
msgstr ""
|
| 2737 |
|
| 2738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:263
|
| 2739 |
msgid "Type your password."
|
| 2740 |
msgstr ""
|
| 2741 |
|
| 2742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:264, ../profile-builder-2.0/front-end/recover.php:74
|
| 2743 |
msgid "Repeat Password"
|
| 2744 |
msgstr ""
|
| 2745 |
|
| 2746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:264
|
| 2747 |
msgid "Type your password again. "
|
| 2748 |
msgstr ""
|
| 2749 |
|
| 2750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:266
|
| 2751 |
msgid "Blog Details"
|
| 2752 |
msgstr ""
|
| 2753 |
|
| 2754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:325
|
| 2755 |
msgid "Select a Country"
|
| 2756 |
msgstr ""
|
| 2757 |
|
| 2758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:326, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2759 |
msgid "Afghanistan"
|
| 2760 |
msgstr ""
|
| 2761 |
|
| 2762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:327, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2763 |
msgid "Aland Islands"
|
| 2764 |
msgstr ""
|
| 2765 |
|
| 2766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:328, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2767 |
msgid "Albania"
|
| 2768 |
msgstr ""
|
| 2769 |
|
| 2770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:329, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2771 |
msgid "Algeria"
|
| 2772 |
msgstr ""
|
| 2773 |
|
| 2774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:330, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2775 |
msgid "American Samoa"
|
| 2776 |
msgstr ""
|
| 2777 |
|
| 2778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:331, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2779 |
msgid "Andorra"
|
| 2780 |
msgstr ""
|
| 2781 |
|
| 2782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:332, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2783 |
msgid "Angola"
|
| 2784 |
msgstr ""
|
| 2785 |
|
| 2786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:333, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2787 |
msgid "Anguilla"
|
| 2788 |
msgstr ""
|
| 2789 |
|
| 2790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:334, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2791 |
msgid "Antarctica"
|
| 2792 |
msgstr ""
|
| 2793 |
|
| 2794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:335, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2795 |
msgid "Antigua and Barbuda"
|
| 2796 |
msgstr ""
|
| 2797 |
|
| 2798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:336, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2799 |
msgid "Argentina"
|
| 2800 |
msgstr ""
|
| 2801 |
|
| 2802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:337, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2803 |
msgid "Armenia"
|
| 2804 |
msgstr ""
|
| 2805 |
|
| 2806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:338, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2807 |
msgid "Aruba"
|
| 2808 |
msgstr ""
|
| 2809 |
|
| 2810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:339, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2811 |
msgid "Australia"
|
| 2812 |
msgstr ""
|
| 2813 |
|
| 2814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:340, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2815 |
msgid "Austria"
|
| 2816 |
msgstr ""
|
| 2817 |
|
| 2818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:341, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2819 |
msgid "Azerbaijan"
|
| 2820 |
msgstr ""
|
| 2821 |
|
| 2822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:342, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2823 |
msgid "Bahamas"
|
| 2824 |
msgstr ""
|
| 2825 |
|
| 2826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:343, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2827 |
msgid "Bahrain"
|
| 2828 |
msgstr ""
|
| 2829 |
|
| 2830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:344, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2831 |
msgid "Bangladesh"
|
| 2832 |
msgstr ""
|
| 2833 |
|
| 2834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:345, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2835 |
msgid "Barbados"
|
| 2836 |
msgstr ""
|
| 2837 |
|
| 2838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:346, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2839 |
msgid "Belarus"
|
| 2840 |
msgstr ""
|
| 2841 |
|
| 2842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:347, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2843 |
msgid "Belgium"
|
| 2844 |
msgstr ""
|
| 2845 |
|
| 2846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:348, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2847 |
msgid "Belize"
|
| 2848 |
msgstr ""
|
| 2849 |
|
| 2850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:349, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2851 |
msgid "Benin"
|
| 2852 |
msgstr ""
|
| 2853 |
|
| 2854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:350, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2855 |
msgid "Bermuda"
|
| 2856 |
msgstr ""
|
| 2857 |
|
| 2858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:351, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2859 |
msgid "Bhutan"
|
| 2860 |
msgstr ""
|
| 2861 |
|
| 2862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:352
|
| 2863 |
msgid "Bolivia"
|
| 2864 |
msgstr ""
|
| 2865 |
|
| 2866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:353
|
| 2867 |
msgid "Bonaire, Saint Eustatius and Saba"
|
| 2868 |
msgstr ""
|
| 2869 |
|
| 2870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:354, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2871 |
msgid "Bosnia and Herzegovina"
|
| 2872 |
msgstr ""
|
| 2873 |
|
| 2874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:355, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2875 |
msgid "Botswana"
|
| 2876 |
msgstr ""
|
| 2877 |
|
| 2878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:356, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2879 |
msgid "Bouvet Island"
|
| 2880 |
msgstr ""
|
| 2881 |
|
| 2882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:357, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2883 |
msgid "Brazil"
|
| 2884 |
msgstr ""
|
| 2885 |
|
| 2886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:358, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2887 |
msgid "British Indian Ocean Territory"
|
| 2888 |
msgstr ""
|
| 2889 |
|
| 2890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:359
|
| 2891 |
msgid "British Virgin Islands"
|
| 2892 |
msgstr ""
|
| 2893 |
|
| 2894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:360
|
| 2895 |
msgid "Brunei"
|
| 2896 |
msgstr ""
|
| 2897 |
|
| 2898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:361, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2899 |
msgid "Bulgaria"
|
| 2900 |
msgstr ""
|
| 2901 |
|
| 2902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:362, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2903 |
msgid "Burkina Faso"
|
| 2904 |
msgstr ""
|
| 2905 |
|
| 2906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:363, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2907 |
msgid "Burundi"
|
| 2908 |
msgstr ""
|
| 2909 |
|
| 2910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:364, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2911 |
msgid "Cambodia"
|
| 2912 |
msgstr ""
|
| 2913 |
|
| 2914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:365, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2915 |
msgid "Cameroon"
|
| 2916 |
msgstr ""
|
| 2917 |
|
| 2918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:366, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2919 |
msgid "Canada"
|
| 2920 |
msgstr ""
|
| 2921 |
|
| 2922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:367
|
| 2923 |
msgid "Cape Verde"
|
| 2924 |
msgstr ""
|
| 2925 |
|
| 2926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:368, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2927 |
msgid "Cayman Islands"
|
| 2928 |
msgstr ""
|
| 2929 |
|
| 2930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:369, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2931 |
msgid "Central African Republic"
|
| 2932 |
msgstr ""
|
| 2933 |
|
| 2934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:370, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2935 |
msgid "Chad"
|
| 2936 |
msgstr ""
|
| 2937 |
|
| 2938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:371, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2939 |
msgid "Chile"
|
| 2940 |
msgstr ""
|
| 2941 |
|
| 2942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:372, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2943 |
msgid "China"
|
| 2944 |
msgstr ""
|
| 2945 |
|
| 2946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:373, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2947 |
msgid "Christmas Island"
|
| 2948 |
msgstr ""
|
| 2949 |
|
| 2950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:374
|
| 2951 |
msgid "Cocos Islands"
|
| 2952 |
msgstr ""
|
| 2953 |
|
| 2954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:375, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2955 |
msgid "Colombia"
|
| 2956 |
msgstr ""
|
| 2957 |
|
| 2958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:376, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2959 |
msgid "Comoros"
|
| 2960 |
msgstr ""
|
| 2961 |
|
| 2962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:377, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2963 |
msgid "Cook Islands"
|
| 2964 |
msgstr ""
|
| 2965 |
|
| 2966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:378, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2967 |
msgid "Costa Rica"
|
| 2968 |
msgstr ""
|
| 2969 |
|
| 2970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:379, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2971 |
msgid "Croatia"
|
| 2972 |
msgstr ""
|
| 2973 |
|
| 2974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:380, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2975 |
msgid "Cuba"
|
| 2976 |
msgstr ""
|
| 2977 |
|
| 2978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:381, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2979 |
msgid "Curacao"
|
| 2980 |
msgstr ""
|
| 2981 |
|
| 2982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:382, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2983 |
msgid "Cyprus"
|
| 2984 |
msgstr ""
|
| 2985 |
|
| 2986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:383, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2987 |
msgid "Czech Republic"
|
| 2988 |
msgstr ""
|
| 2989 |
|
| 2990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:384
|
| 2991 |
msgid "Democratic Republic of the Congo"
|
| 2992 |
msgstr ""
|
| 2993 |
|
| 2994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:385, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2995 |
msgid "Denmark"
|
| 2996 |
msgstr ""
|
| 2997 |
|
| 2998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:386, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 2999 |
msgid "Djibouti"
|
| 3000 |
msgstr ""
|
| 3001 |
|
| 3002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:387, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3003 |
msgid "Dominica"
|
| 3004 |
msgstr ""
|
| 3005 |
|
| 3006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:388, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3007 |
msgid "Dominican Republic"
|
| 3008 |
msgstr ""
|
| 3009 |
|
| 3010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:389
|
| 3011 |
msgid "East Timor"
|
| 3012 |
msgstr ""
|
| 3013 |
|
| 3014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:390, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3015 |
msgid "Ecuador"
|
| 3016 |
msgstr ""
|
| 3017 |
|
| 3018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:391, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3019 |
msgid "Egypt"
|
| 3020 |
msgstr ""
|
| 3021 |
|
| 3022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:392, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3023 |
msgid "El Salvador"
|
| 3024 |
msgstr ""
|
| 3025 |
|
| 3026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:393, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3027 |
msgid "Equatorial Guinea"
|
| 3028 |
msgstr ""
|
| 3029 |
|
| 3030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:394, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3031 |
msgid "Eritrea"
|
| 3032 |
msgstr ""
|
| 3033 |
|
| 3034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:395, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3035 |
msgid "Estonia"
|
| 3036 |
msgstr ""
|
| 3037 |
|
| 3038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:396, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3039 |
msgid "Ethiopia"
|
| 3040 |
msgstr ""
|
| 3041 |
|
| 3042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:397
|
| 3043 |
msgid "Falkland Islands"
|
| 3044 |
msgstr ""
|
| 3045 |
|
| 3046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:398, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3047 |
msgid "Faroe Islands"
|
| 3048 |
msgstr ""
|
| 3049 |
|
| 3050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:399, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3051 |
msgid "Fiji"
|
| 3052 |
msgstr ""
|
| 3053 |
|
| 3054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:400, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3055 |
msgid "Finland"
|
| 3056 |
msgstr ""
|
| 3057 |
|
| 3058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:401, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3059 |
msgid "France"
|
| 3060 |
msgstr ""
|
| 3061 |
|
| 3062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:402, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3063 |
msgid "French Guiana"
|
| 3064 |
msgstr ""
|
| 3065 |
|
| 3066 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:403, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3067 |
msgid "French Polynesia"
|
| 3068 |
msgstr ""
|
| 3069 |
|
| 3070 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:404, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3071 |
msgid "French Southern Territories"
|
| 3072 |
msgstr ""
|
| 3073 |
|
| 3074 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:405, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3075 |
msgid "Gabon"
|
| 3076 |
msgstr ""
|
| 3077 |
|
| 3078 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:406, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3079 |
msgid "Gambia"
|
| 3080 |
msgstr ""
|
| 3081 |
|
| 3082 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:407, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3083 |
msgid "Georgia"
|
| 3084 |
msgstr ""
|
| 3085 |
|
| 3086 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:408, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3087 |
msgid "Germany"
|
| 3088 |
msgstr ""
|
| 3089 |
|
| 3090 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:409, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3091 |
msgid "Ghana"
|
| 3092 |
msgstr ""
|
| 3093 |
|
| 3094 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:410, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3095 |
msgid "Gibraltar"
|
| 3096 |
msgstr ""
|
| 3097 |
|
| 3098 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:411, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3099 |
msgid "Greece"
|
| 3100 |
msgstr ""
|
| 3101 |
|
| 3102 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:412, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3103 |
msgid "Greenland"
|
| 3104 |
msgstr ""
|
| 3105 |
|
| 3106 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:413, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3107 |
msgid "Grenada"
|
| 3108 |
msgstr ""
|
| 3109 |
|
| 3110 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:414, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3111 |
msgid "Guadeloupe"
|
| 3112 |
msgstr ""
|
| 3113 |
|
| 3114 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:415, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3115 |
msgid "Guam"
|
| 3116 |
msgstr ""
|
| 3117 |
|
| 3118 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:416, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3119 |
msgid "Guatemala"
|
| 3120 |
msgstr ""
|
| 3121 |
|
| 3122 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:417, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3123 |
msgid "Guernsey"
|
| 3124 |
msgstr ""
|
| 3125 |
|
| 3126 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:418, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3127 |
msgid "Guinea"
|
| 3128 |
msgstr ""
|
| 3129 |
|
| 3130 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:419, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3131 |
msgid "Guinea-Bissau"
|
| 3132 |
msgstr ""
|
| 3133 |
|
| 3134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:420, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3135 |
msgid "Guyana"
|
| 3136 |
msgstr ""
|
| 3137 |
|
| 3138 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:421, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3139 |
msgid "Haiti"
|
| 3140 |
msgstr ""
|
| 3141 |
|
| 3142 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:422, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3143 |
msgid "Heard Island and McDonald Islands"
|
| 3144 |
msgstr ""
|
| 3145 |
|
| 3146 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:423, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3147 |
msgid "Honduras"
|
| 3148 |
msgstr ""
|
| 3149 |
|
| 3150 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:424, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3151 |
msgid "Hong Kong"
|
| 3152 |
msgstr ""
|
| 3153 |
|
| 3154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:425, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3155 |
msgid "Hungary"
|
| 3156 |
msgstr ""
|
| 3157 |
|
| 3158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:426, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3159 |
msgid "Iceland"
|
| 3160 |
msgstr ""
|
| 3161 |
|
| 3162 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:427, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3163 |
msgid "India"
|
| 3164 |
msgstr ""
|
| 3165 |
|
| 3166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:428, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3167 |
msgid "Indonesia"
|
| 3168 |
msgstr ""
|
| 3169 |
|
| 3170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:429
|
| 3171 |
msgid "Iran"
|
| 3172 |
msgstr ""
|
| 3173 |
|
| 3174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:430, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3175 |
msgid "Iraq"
|
| 3176 |
msgstr ""
|
| 3177 |
|
| 3178 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:431, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3179 |
msgid "Ireland"
|
| 3180 |
msgstr ""
|
| 3181 |
|
| 3182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:432, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3183 |
msgid "Isle of Man"
|
| 3184 |
msgstr ""
|
| 3185 |
|
| 3186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:433, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3187 |
msgid "Israel"
|
| 3188 |
msgstr ""
|
| 3189 |
|
| 3190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:434, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3191 |
msgid "Italy"
|
| 3192 |
msgstr ""
|
| 3193 |
|
| 3194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:435
|
| 3195 |
msgid "Ivory Coast"
|
| 3196 |
msgstr ""
|
| 3197 |
|
| 3198 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:436, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3199 |
msgid "Jamaica"
|
| 3200 |
msgstr ""
|
| 3201 |
|
| 3202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:437, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3203 |
msgid "Japan"
|
| 3204 |
msgstr ""
|
| 3205 |
|
| 3206 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:438, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3207 |
msgid "Jersey"
|
| 3208 |
msgstr ""
|
| 3209 |
|
| 3210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:439, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3211 |
msgid "Jordan"
|
| 3212 |
msgstr ""
|
| 3213 |
|
| 3214 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:440, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3215 |
msgid "Kazakhstan"
|
| 3216 |
msgstr ""
|
| 3217 |
|
| 3218 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:441, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3219 |
msgid "Kenya"
|
| 3220 |
msgstr ""
|
| 3221 |
|
| 3222 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:442, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3223 |
msgid "Kiribati"
|
| 3224 |
msgstr ""
|
| 3225 |
|
| 3226 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:443
|
| 3227 |
msgid "Kosovo"
|
| 3228 |
msgstr ""
|
| 3229 |
|
| 3230 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:444, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3231 |
msgid "Kuwait"
|
| 3232 |
msgstr ""
|
| 3233 |
|
| 3234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:445, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3235 |
msgid "Kyrgyzstan"
|
| 3236 |
msgstr ""
|
| 3237 |
|
| 3238 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:446
|
| 3239 |
msgid "Laos"
|
| 3240 |
msgstr ""
|
| 3241 |
|
| 3242 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:447, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3243 |
msgid "Latvia"
|
| 3244 |
msgstr ""
|
| 3245 |
|
| 3246 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:448, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3247 |
msgid "Lebanon"
|
| 3248 |
msgstr ""
|
| 3249 |
|
| 3250 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:449, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3251 |
msgid "Lesotho"
|
| 3252 |
msgstr ""
|
| 3253 |
|
| 3254 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:450, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3255 |
msgid "Liberia"
|
| 3256 |
msgstr ""
|
| 3257 |
|
| 3258 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:451, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3259 |
msgid "Libya"
|
| 3260 |
msgstr ""
|
| 3261 |
|
| 3262 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:452, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3263 |
msgid "Liechtenstein"
|
| 3264 |
msgstr ""
|
| 3265 |
|
| 3266 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:453, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3267 |
msgid "Lithuania"
|
| 3268 |
msgstr ""
|
| 3269 |
|
| 3270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:454, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3271 |
msgid "Luxembourg"
|
| 3272 |
msgstr ""
|
| 3273 |
|
| 3274 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:455, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3275 |
msgid "Macao"
|
| 3276 |
msgstr ""
|
| 3277 |
|
| 3278 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:456
|
| 3279 |
msgid "Macedonia"
|
| 3280 |
msgstr ""
|
| 3281 |
|
| 3282 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:457, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3283 |
msgid "Madagascar"
|
| 3284 |
msgstr ""
|
| 3285 |
|
| 3286 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:458, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3287 |
msgid "Malawi"
|
| 3288 |
msgstr ""
|
| 3289 |
|
| 3290 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:459, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3291 |
msgid "Malaysia"
|
| 3292 |
msgstr ""
|
| 3293 |
|
| 3294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:460, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3295 |
msgid "Maldives"
|
| 3296 |
msgstr ""
|
| 3297 |
|
| 3298 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:461, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3299 |
msgid "Mali"
|
| 3300 |
msgstr ""
|
| 3301 |
|
| 3302 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:462, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3303 |
msgid "Malta"
|
| 3304 |
msgstr ""
|
| 3305 |
|
| 3306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:463, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3307 |
msgid "Marshall Islands"
|
| 3308 |
msgstr ""
|
| 3309 |
|
| 3310 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:464, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3311 |
msgid "Martinique"
|
| 3312 |
msgstr ""
|
| 3313 |
|
| 3314 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:465, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3315 |
msgid "Mauritania"
|
| 3316 |
msgstr ""
|
| 3317 |
|
| 3318 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:466, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3319 |
msgid "Mauritius"
|
| 3320 |
msgstr ""
|
| 3321 |
|
| 3322 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:467, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3323 |
msgid "Mayotte"
|
| 3324 |
msgstr ""
|
| 3325 |
|
| 3326 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:468, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3327 |
msgid "Mexico"
|
| 3328 |
msgstr ""
|
| 3329 |
|
| 3330 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:469
|
| 3331 |
msgid "Micronesia"
|
| 3332 |
msgstr ""
|
| 3333 |
|
| 3334 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:470
|
| 3335 |
msgid "Moldova"
|
| 3336 |
msgstr ""
|
| 3337 |
|
| 3338 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:471, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3339 |
msgid "Monaco"
|
| 3340 |
msgstr ""
|
| 3341 |
|
| 3342 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:472, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3343 |
msgid "Mongolia"
|
| 3344 |
msgstr ""
|
| 3345 |
|
| 3346 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:473, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3347 |
msgid "Montenegro"
|
| 3348 |
msgstr ""
|
| 3349 |
|
| 3350 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:474, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3351 |
msgid "Montserrat"
|
| 3352 |
msgstr ""
|
| 3353 |
|
| 3354 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:475, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3355 |
msgid "Morocco"
|
| 3356 |
msgstr ""
|
| 3357 |
|
| 3358 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:476, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3359 |
msgid "Mozambique"
|
| 3360 |
msgstr ""
|
| 3361 |
|
| 3362 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:477, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3363 |
msgid "Myanmar"
|
| 3364 |
msgstr ""
|
| 3365 |
|
| 3366 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:478, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3367 |
msgid "Namibia"
|
| 3368 |
msgstr ""
|
| 3369 |
|
| 3370 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:479, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3371 |
msgid "Nauru"
|
| 3372 |
msgstr ""
|
| 3373 |
|
| 3374 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:480, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3375 |
msgid "Nepal"
|
| 3376 |
msgstr ""
|
| 3377 |
|
| 3378 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:481, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3379 |
msgid "Netherlands"
|
| 3380 |
msgstr ""
|
| 3381 |
|
| 3382 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:482, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3383 |
msgid "New Caledonia"
|
| 3384 |
msgstr ""
|
| 3385 |
|
| 3386 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:483, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3387 |
msgid "New Zealand"
|
| 3388 |
msgstr ""
|
| 3389 |
|
| 3390 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:484, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3391 |
msgid "Nicaragua"
|
| 3392 |
msgstr ""
|
| 3393 |
|
| 3394 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:485, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3395 |
msgid "Niger"
|
| 3396 |
msgstr ""
|
| 3397 |
|
| 3398 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:486, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3399 |
msgid "Nigeria"
|
| 3400 |
msgstr ""
|
| 3401 |
|
| 3402 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:487, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3403 |
msgid "Niue"
|
| 3404 |
msgstr ""
|
| 3405 |
|
| 3406 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:488, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3407 |
msgid "Norfolk Island"
|
| 3408 |
msgstr ""
|
| 3409 |
|
| 3410 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:489
|
| 3411 |
msgid "North Korea"
|
| 3412 |
msgstr ""
|
| 3413 |
|
| 3414 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:490, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3415 |
msgid "Northern Mariana Islands"
|
| 3416 |
msgstr ""
|
| 3417 |
|
| 3418 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:491, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3419 |
msgid "Norway"
|
| 3420 |
msgstr ""
|
| 3421 |
|
| 3422 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:492, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3423 |
msgid "Oman"
|
| 3424 |
msgstr ""
|
| 3425 |
|
| 3426 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:493, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3427 |
msgid "Pakistan"
|
| 3428 |
msgstr ""
|
| 3429 |
|
| 3430 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:494, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3431 |
msgid "Palau"
|
| 3432 |
msgstr ""
|
| 3433 |
|
| 3434 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:495
|
| 3435 |
msgid "Palestinian Territory"
|
| 3436 |
msgstr ""
|
| 3437 |
|
| 3438 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:496, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3439 |
msgid "Panama"
|
| 3440 |
msgstr ""
|
| 3441 |
|
| 3442 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:497, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3443 |
msgid "Papua New Guinea"
|
| 3444 |
msgstr ""
|
| 3445 |
|
| 3446 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:498, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3447 |
msgid "Paraguay"
|
| 3448 |
msgstr ""
|
| 3449 |
|
| 3450 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:499, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3451 |
msgid "Peru"
|
| 3452 |
msgstr ""
|
| 3453 |
|
| 3454 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:500, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3455 |
msgid "Philippines"
|
| 3456 |
msgstr ""
|
| 3457 |
|
| 3458 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:501, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3459 |
msgid "Pitcairn"
|
| 3460 |
msgstr ""
|
| 3461 |
|
| 3462 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:502, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3463 |
msgid "Poland"
|
| 3464 |
msgstr ""
|
| 3465 |
|
| 3466 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:503, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3467 |
msgid "Portugal"
|
| 3468 |
msgstr ""
|
| 3469 |
|
| 3470 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:504, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3471 |
msgid "Puerto Rico"
|
| 3472 |
msgstr ""
|
| 3473 |
|
| 3474 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:505, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3475 |
msgid "Qatar"
|
| 3476 |
msgstr ""
|
| 3477 |
|
| 3478 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:506
|
| 3479 |
msgid "Republic of the Congo"
|
| 3480 |
msgstr ""
|
| 3481 |
|
| 3482 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:507, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3483 |
msgid "Reunion"
|
| 3484 |
msgstr ""
|
| 3485 |
|
| 3486 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:508, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3487 |
msgid "Romania"
|
| 3488 |
msgstr ""
|
| 3489 |
|
| 3490 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:509
|
| 3491 |
msgid "Russia"
|
| 3492 |
msgstr ""
|
| 3493 |
|
| 3494 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:510, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3495 |
msgid "Rwanda"
|
| 3496 |
msgstr ""
|
| 3497 |
|
| 3498 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:511, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3499 |
msgid "Saint Barthelemy"
|
| 3500 |
msgstr ""
|
| 3501 |
|
| 3502 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:512
|
| 3503 |
msgid "Saint Helena"
|
| 3504 |
msgstr ""
|
| 3505 |
|
| 3506 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:513, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3507 |
msgid "Saint Kitts and Nevis"
|
| 3508 |
msgstr ""
|
| 3509 |
|
| 3510 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:514, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3511 |
msgid "Saint Lucia"
|
| 3512 |
msgstr ""
|
| 3513 |
|
| 3514 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:515
|
| 3515 |
msgid "Saint Martin"
|
| 3516 |
msgstr ""
|
| 3517 |
|
| 3518 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:516, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3519 |
msgid "Saint Pierre and Miquelon"
|
| 3520 |
msgstr ""
|
| 3521 |
|
| 3522 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:517, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3523 |
msgid "Saint Vincent and the Grenadines"
|
| 3524 |
msgstr ""
|
| 3525 |
|
| 3526 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:518, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3527 |
msgid "Samoa"
|
| 3528 |
msgstr ""
|
| 3529 |
|
| 3530 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:519, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3531 |
msgid "San Marino"
|
| 3532 |
msgstr ""
|
| 3533 |
|
| 3534 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:520, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3535 |
msgid "Sao Tome and Principe"
|
| 3536 |
msgstr ""
|
| 3537 |
|
| 3538 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:521, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3539 |
msgid "Saudi Arabia"
|
| 3540 |
msgstr ""
|
| 3541 |
|
| 3542 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:522, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3543 |
msgid "Senegal"
|
| 3544 |
msgstr ""
|
| 3545 |
|
| 3546 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:523, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3547 |
msgid "Serbia"
|
| 3548 |
msgstr ""
|
| 3549 |
|
| 3550 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:524, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3551 |
msgid "Seychelles"
|
| 3552 |
msgstr ""
|
| 3553 |
|
| 3554 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:525, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3555 |
msgid "Sierra Leone"
|
| 3556 |
msgstr ""
|
| 3557 |
|
| 3558 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:526, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3559 |
msgid "Singapore"
|
| 3560 |
msgstr ""
|
| 3561 |
|
| 3562 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:527
|
| 3563 |
msgid "Sint Maarten"
|
| 3564 |
msgstr ""
|
| 3565 |
|
| 3566 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:528, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3567 |
msgid "Slovakia"
|
| 3568 |
msgstr ""
|
| 3569 |
|
| 3570 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:529, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3571 |
msgid "Slovenia"
|
| 3572 |
msgstr ""
|
| 3573 |
|
| 3574 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:530, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3575 |
msgid "Solomon Islands"
|
| 3576 |
msgstr ""
|
| 3577 |
|
| 3578 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:531, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3579 |
msgid "Somalia"
|
| 3580 |
msgstr ""
|
| 3581 |
|
| 3582 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:532, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3583 |
msgid "South Africa"
|
| 3584 |
msgstr ""
|
| 3585 |
|
| 3586 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:533, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3587 |
msgid "South Georgia and the South Sandwich Islands"
|
| 3588 |
msgstr ""
|
| 3589 |
|
| 3590 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:534
|
| 3591 |
msgid "South Korea"
|
| 3592 |
msgstr ""
|
| 3593 |
|
| 3594 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:535, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3595 |
msgid "South Sudan"
|
| 3596 |
msgstr ""
|
| 3597 |
|
| 3598 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:536, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3599 |
msgid "Spain"
|
| 3600 |
msgstr ""
|
| 3601 |
|
| 3602 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:537, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3603 |
msgid "Sri Lanka"
|
| 3604 |
msgstr ""
|
| 3605 |
|
| 3606 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:538, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3607 |
msgid "Sudan"
|
| 3608 |
msgstr ""
|
| 3609 |
|
| 3610 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:539, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3611 |
msgid "Suriname"
|
| 3612 |
msgstr ""
|
| 3613 |
|
| 3614 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:540, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3615 |
msgid "Svalbard and Jan Mayen"
|
| 3616 |
msgstr ""
|
| 3617 |
|
| 3618 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:541, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3619 |
msgid "Swaziland"
|
| 3620 |
msgstr ""
|
| 3621 |
|
| 3622 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:542, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3623 |
msgid "Sweden"
|
| 3624 |
msgstr ""
|
| 3625 |
|
| 3626 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:543, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3627 |
msgid "Switzerland"
|
| 3628 |
msgstr ""
|
| 3629 |
|
| 3630 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:544
|
| 3631 |
msgid "Syria"
|
| 3632 |
msgstr ""
|
| 3633 |
|
| 3634 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:545
|
| 3635 |
msgid "Taiwan"
|
| 3636 |
msgstr ""
|
| 3637 |
|
| 3638 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:546, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3639 |
msgid "Tajikistan"
|
| 3640 |
msgstr ""
|
| 3641 |
|
| 3642 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:547
|
| 3643 |
msgid "Tanzania"
|
| 3644 |
msgstr ""
|
| 3645 |
|
| 3646 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:548, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3647 |
msgid "Thailand"
|
| 3648 |
msgstr ""
|
| 3649 |
|
| 3650 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:549, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3651 |
msgid "Togo"
|
| 3652 |
msgstr ""
|
| 3653 |
|
| 3654 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:550, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3655 |
msgid "Tokelau"
|
| 3656 |
msgstr ""
|
| 3657 |
|
| 3658 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:551, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3659 |
msgid "Tonga"
|
| 3660 |
msgstr ""
|
| 3661 |
|
| 3662 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:552, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3663 |
msgid "Trinidad and Tobago"
|
| 3664 |
msgstr ""
|
| 3665 |
|
| 3666 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:553, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3667 |
msgid "Tunisia"
|
| 3668 |
msgstr ""
|
| 3669 |
|
| 3670 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:554, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3671 |
msgid "Turkey"
|
| 3672 |
msgstr ""
|
| 3673 |
|
| 3674 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:555, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3675 |
msgid "Turkmenistan"
|
| 3676 |
msgstr ""
|
| 3677 |
|
| 3678 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:556, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3679 |
msgid "Turks and Caicos Islands"
|
| 3680 |
msgstr ""
|
| 3681 |
|
| 3682 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:557, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3683 |
msgid "Tuvalu"
|
| 3684 |
msgstr ""
|
| 3685 |
|
| 3686 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:558
|
| 3687 |
msgid "U.S. Virgin Islands"
|
| 3688 |
msgstr ""
|
| 3689 |
|
| 3690 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:559, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3691 |
msgid "Uganda"
|
| 3692 |
msgstr ""
|
| 3693 |
|
| 3694 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:560, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3695 |
msgid "Ukraine"
|
| 3696 |
msgstr ""
|
| 3697 |
|
| 3698 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:561, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3699 |
msgid "United Arab Emirates"
|
| 3700 |
msgstr ""
|
| 3701 |
|
| 3702 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:562, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3703 |
msgid "United Kingdom"
|
| 3704 |
msgstr ""
|
| 3705 |
|
| 3706 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:563, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3707 |
msgid "United States"
|
| 3708 |
msgstr ""
|
| 3709 |
|
| 3710 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:564, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3711 |
msgid "United States Minor Outlying Islands"
|
| 3712 |
msgstr ""
|
| 3713 |
|
| 3714 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:565, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3715 |
msgid "Uruguay"
|
| 3716 |
msgstr ""
|
| 3717 |
|
| 3718 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:566, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3719 |
msgid "Uzbekistan"
|
| 3720 |
msgstr ""
|
| 3721 |
|
| 3722 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:567, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3723 |
msgid "Vanuatu"
|
| 3724 |
msgstr ""
|
| 3725 |
|
| 3726 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:568
|
| 3727 |
msgid "Vatican"
|
| 3728 |
msgstr ""
|
| 3729 |
|
| 3730 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:569
|
| 3731 |
msgid "Venezuela"
|
| 3732 |
msgstr ""
|
| 3733 |
|
| 3734 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:570
|
| 3735 |
msgid "Vietnam"
|
| 3736 |
msgstr ""
|
| 3737 |
|
| 3738 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:571, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3739 |
msgid "Wallis and Futuna"
|
| 3740 |
msgstr ""
|
| 3741 |
|
| 3742 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:572, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3743 |
msgid "Western Sahara"
|
| 3744 |
msgstr ""
|
| 3745 |
|
| 3746 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:573, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3747 |
msgid "Yemen"
|
| 3748 |
msgstr ""
|
| 3749 |
|
| 3750 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:574, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3751 |
msgid "Zambia"
|
| 3752 |
msgstr ""
|
| 3753 |
|
| 3754 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:575, ../profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
|
| 3755 |
msgid "Zimbabwe"
|
| 3756 |
msgstr ""
|
| 3757 |
|
| 3758 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:608
|
| 3759 |
msgid "Albania Lek"
|
| 3760 |
msgstr ""
|
| 3761 |
|
| 3762 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:609
|
| 3763 |
msgid "Afghanistan Afghani"
|
| 3764 |
msgstr ""
|
| 3765 |
|
| 3766 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:610
|
| 3767 |
msgid "Argentina Peso"
|
| 3768 |
msgstr ""
|
| 3769 |
|
| 3770 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:612
|
| 3771 |
msgid "Australia Dollar"
|
| 3772 |
msgstr ""
|
| 3773 |
|
| 3774 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:613
|
| 3775 |
msgid "Azerbaijan New Manat"
|
| 3776 |
msgstr ""
|
| 3777 |
|
| 3778 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:614
|
| 3779 |
msgid "Bahamas Dollar"
|
| 3780 |
msgstr ""
|
| 3781 |
|
| 3782 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:615
|
| 3783 |
msgid "Barbados Dollar"
|
| 3784 |
msgstr ""
|
| 3785 |
|
| 3786 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:616
|
| 3787 |
msgid "Bangladeshi taka"
|
| 3788 |
msgstr ""
|
| 3789 |
|
| 3790 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:617
|
| 3791 |
msgid "Belarus Ruble"
|
| 3792 |
msgstr ""
|
| 3793 |
|
| 3794 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:618
|
| 3795 |
msgid "Belize Dollar"
|
| 3796 |
msgstr ""
|
| 3797 |
|
| 3798 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:619
|
| 3799 |
msgid "Bermuda Dollar"
|
| 3800 |
msgstr ""
|
| 3801 |
|
| 3802 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:620
|
| 3803 |
msgid "Bolivia Boliviano"
|
| 3804 |
msgstr ""
|
| 3805 |
|
| 3806 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:621
|
| 3807 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
| 3808 |
msgstr ""
|
| 3809 |
|
| 3810 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:622
|
| 3811 |
msgid "Botswana Pula"
|
| 3812 |
msgstr ""
|
| 3813 |
|
| 3814 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:623
|
| 3815 |
msgid "Bulgaria Lev"
|
| 3816 |
msgstr ""
|
| 3817 |
|
| 3818 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:624
|
| 3819 |
msgid "Brazil Real"
|
| 3820 |
msgstr ""
|
| 3821 |
|
| 3822 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:625
|
| 3823 |
msgid "Brunei Darussalam Dollar"
|
| 3824 |
msgstr ""
|
| 3825 |
|
| 3826 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:626
|
| 3827 |
msgid "Cambodia Riel"
|
| 3828 |
msgstr ""
|
| 3829 |
|
| 3830 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:627
|
| 3831 |
msgid "Canada Dollar"
|
| 3832 |
msgstr ""
|
| 3833 |
|
| 3834 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:628
|
| 3835 |
msgid "Cayman Islands Dollar"
|
| 3836 |
msgstr ""
|
| 3837 |
|
| 3838 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:629
|
| 3839 |
msgid "Chile Peso"
|
| 3840 |
msgstr ""
|
| 3841 |
|
| 3842 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:630
|
| 3843 |
msgid "China Yuan Renminbi"
|
| 3844 |
msgstr ""
|
| 3845 |
|
| 3846 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:631
|
| 3847 |
msgid "Colombia Peso"
|
| 3848 |
msgstr ""
|
| 3849 |
|
| 3850 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:632
|
| 3851 |
msgid "Costa Rica Colon"
|
| 3852 |
msgstr ""
|
| 3853 |
|
| 3854 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:633
|
| 3855 |
msgid "Croatia Kuna"
|
| 3856 |
msgstr ""
|
| 3857 |
|
| 3858 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:634
|
| 3859 |
msgid "Cuba Peso"
|
| 3860 |
msgstr ""
|
| 3861 |
|
| 3862 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:635
|
| 3863 |
msgid "Czech Republic Koruna"
|
| 3864 |
msgstr ""
|
| 3865 |
|
| 3866 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:636
|
| 3867 |
msgid "Denmark Krone"
|
| 3868 |
msgstr ""
|
| 3869 |
|
| 3870 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:637
|
| 3871 |
msgid "Dominican Republic Peso"
|
| 3872 |
msgstr ""
|
| 3873 |
|
| 3874 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:638
|
| 3875 |
msgid "East Caribbean Dollar"
|
| 3876 |
msgstr ""
|
| 3877 |
|
| 3878 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:639
|
| 3879 |
msgid "Egypt Pound"
|
| 3880 |
msgstr ""
|
| 3881 |
|
| 3882 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:640
|
| 3883 |
msgid "El Salvador Colon"
|
| 3884 |
msgstr ""
|
| 3885 |
|
| 3886 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:641
|
| 3887 |
msgid "Estonia Kroon"
|
| 3888 |
msgstr ""
|
| 3889 |
|
| 3890 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:642
|
| 3891 |
msgid "Euro"
|
| 3892 |
msgstr ""
|
| 3893 |
|
| 3894 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:643
|
| 3895 |
msgid "Falkland Islands (Malvinas) Pound"
|
| 3896 |
msgstr ""
|
| 3897 |
|
| 3898 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:644
|
| 3899 |
msgid "Fiji Dollar"
|
| 3900 |
msgstr ""
|
| 3901 |
|
| 3902 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:645
|
| 3903 |
msgid "Ghana Cedis"
|
| 3904 |
msgstr ""
|
| 3905 |
|
| 3906 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:646
|
| 3907 |
msgid "Gibraltar Pound"
|
| 3908 |
msgstr ""
|
| 3909 |
|
| 3910 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:647
|
| 3911 |
msgid "Guatemala Quetzal"
|
| 3912 |
msgstr ""
|
| 3913 |
|
| 3914 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:648
|
| 3915 |
msgid "Guernsey Pound"
|
| 3916 |
msgstr ""
|
| 3917 |
|
| 3918 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:649
|
| 3919 |
msgid "Guyana Dollar"
|
| 3920 |
msgstr ""
|
| 3921 |
|
| 3922 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:650
|
| 3923 |
msgid "Honduras Lempira"
|
| 3924 |
msgstr ""
|
| 3925 |
|
| 3926 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:651
|
| 3927 |
msgid "Hong Kong Dollar"
|
| 3928 |
msgstr ""
|
| 3929 |
|
| 3930 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:652
|
| 3931 |
msgid "Hungary Forint"
|
| 3932 |
msgstr ""
|
| 3933 |
|
| 3934 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:653
|
| 3935 |
msgid "Iceland Krona"
|
| 3936 |
msgstr ""
|
| 3937 |
|
| 3938 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:654
|
| 3939 |
msgid "India Rupee"
|
| 3940 |
msgstr ""
|
| 3941 |
|
| 3942 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:655
|
| 3943 |
msgid "Indonesia Rupiah"
|
| 3944 |
msgstr ""
|
| 3945 |
|
| 3946 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:656
|
| 3947 |
msgid "Iran Rial"
|
| 3948 |
msgstr ""
|
| 3949 |
|
| 3950 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:657
|
| 3951 |
msgid "Isle of Man Pound"
|
| 3952 |
msgstr ""
|
| 3953 |
|
| 3954 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:658
|
| 3955 |
msgid "Israel Shekel"
|
| 3956 |
msgstr ""
|
| 3957 |
|
| 3958 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:659
|
| 3959 |
msgid "Jamaica Dollar"
|
| 3960 |
msgstr ""
|
| 3961 |
|
| 3962 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:660
|
| 3963 |
msgid "Japan Yen"
|
| 3964 |
msgstr ""
|
| 3965 |
|
| 3966 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:661
|
| 3967 |
msgid "Jersey Pound"
|
| 3968 |
msgstr ""
|
| 3969 |
|
| 3970 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:662
|
| 3971 |
msgid "Kazakhstan Tenge"
|
| 3972 |
msgstr ""
|
| 3973 |
|
| 3974 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:663
|
| 3975 |
msgid "Korea (North) Won"
|
| 3976 |
msgstr ""
|
| 3977 |
|
| 3978 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:664
|
| 3979 |
msgid "Korea (South) Won"
|
| 3980 |
msgstr ""
|
| 3981 |
|
| 3982 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:665
|
| 3983 |
msgid "Kyrgyzstan Som"
|
| 3984 |
msgstr ""
|
| 3985 |
|
| 3986 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:666
|
| 3987 |
msgid "Laos Kip"
|
| 3988 |
msgstr ""
|
| 3989 |
|
| 3990 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:667
|
| 3991 |
msgid "Latvia Lat"
|
| 3992 |
msgstr ""
|
| 3993 |
|
| 3994 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:668
|
| 3995 |
msgid "Lebanon Pound"
|
| 3996 |
msgstr ""
|
| 3997 |
|
| 3998 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:669
|
| 3999 |
msgid "Liberia Dollar"
|
| 4000 |
msgstr ""
|
| 4001 |
|
| 4002 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:670
|
| 4003 |
msgid "Lithuania Litas"
|
| 4004 |
msgstr ""
|
| 4005 |
|
| 4006 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:671
|
| 4007 |
msgid "Macedonia Denar"
|
| 4008 |
msgstr ""
|
| 4009 |
|
| 4010 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:672
|
| 4011 |
msgid "Malaysia Ringgit"
|
| 4012 |
msgstr ""
|
| 4013 |
|
| 4014 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:673
|
| 4015 |
msgid "Mauritius Rupee"
|
| 4016 |
msgstr ""
|
| 4017 |
|
| 4018 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:674
|
| 4019 |
msgid "Mexico Peso"
|
| 4020 |
msgstr ""
|
| 4021 |
|
| 4022 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:675
|
| 4023 |
msgid "Mongolia Tughrik"
|
| 4024 |
msgstr ""
|
| 4025 |
|
| 4026 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:676
|
| 4027 |
msgid "Mozambique Metical"
|
| 4028 |
msgstr ""
|
| 4029 |
|
| 4030 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:677
|
| 4031 |
msgid "Namibia Dollar"
|
| 4032 |
msgstr ""
|
| 4033 |
|
| 4034 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:678
|
| 4035 |
msgid "Nepal Rupee"
|
| 4036 |
msgstr ""
|
| 4037 |
|
| 4038 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:679
|
| 4039 |
msgid "Netherlands Antilles Guilder"
|
| 4040 |
msgstr ""
|
| 4041 |
|
| 4042 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:680
|
| 4043 |
msgid "New Zealand Dollar"
|
| 4044 |
msgstr ""
|
| 4045 |
|
| 4046 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:681
|
| 4047 |
msgid "Nicaragua Cordoba"
|
| 4048 |
msgstr ""
|
| 4049 |
|
| 4050 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:682
|
| 4051 |
msgid "Nigeria Naira"
|
| 4052 |
msgstr ""
|
| 4053 |
|
| 4054 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:683
|
| 4055 |
msgid "Norway Krone"
|
| 4056 |
msgstr ""
|
| 4057 |
|
| 4058 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:684
|
| 4059 |
msgid "Oman Rial"
|
| 4060 |
msgstr ""
|
| 4061 |
|
| 4062 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:685
|
| 4063 |
msgid "Pakistan Rupee"
|
| 4064 |
msgstr ""
|
| 4065 |
|
| 4066 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:686
|
| 4067 |
msgid "Panama Balboa"
|
| 4068 |
msgstr ""
|
| 4069 |
|
| 4070 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:687
|
| 4071 |
msgid "Paraguay Guarani"
|
| 4072 |
msgstr ""
|
| 4073 |
|
| 4074 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:688
|
| 4075 |
msgid "Peru Nuevo Sol"
|
| 4076 |
msgstr ""
|
| 4077 |
|
| 4078 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:689
|
| 4079 |
msgid "Philippines Peso"
|
| 4080 |
msgstr ""
|
| 4081 |
|
| 4082 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:690
|
| 4083 |
msgid "Poland Zloty"
|
| 4084 |
msgstr ""
|
| 4085 |
|
| 4086 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:691
|
| 4087 |
msgid "Qatar Riyal"
|
| 4088 |
msgstr ""
|
| 4089 |
|
| 4090 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:692
|
| 4091 |
msgid "Romania New Leu"
|
| 4092 |
msgstr ""
|
| 4093 |
|
| 4094 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:693
|
| 4095 |
msgid "Russia Ruble"
|
| 4096 |
msgstr ""
|
| 4097 |
|
| 4098 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:694
|
| 4099 |
msgid "Saint Helena Pound"
|
| 4100 |
msgstr ""
|
| 4101 |
|
| 4102 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:695
|
| 4103 |
msgid "Saudi Arabia Riyal"
|
| 4104 |
msgstr ""
|
| 4105 |
|
| 4106 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:696
|
| 4107 |
msgid "Serbia Dinar"
|
| 4108 |
msgstr ""
|
| 4109 |
|
| 4110 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:697
|
| 4111 |
msgid "Seychelles Rupee"
|
| 4112 |
msgstr ""
|
| 4113 |
|
| 4114 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:698
|
| 4115 |
msgid "Singapore Dollar"
|
| 4116 |
msgstr ""
|
| 4117 |
|
| 4118 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:699
|
| 4119 |
msgid "Solomon Islands Dollar"
|
| 4120 |
msgstr ""
|
| 4121 |
|
| 4122 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:700
|
| 4123 |
msgid "Somalia Shilling"
|
| 4124 |
msgstr ""
|
| 4125 |
|
| 4126 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:701
|
| 4127 |
msgid "South Africa Rand"
|
| 4128 |
msgstr ""
|
| 4129 |
|
| 4130 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:702
|
| 4131 |
msgid "Sri Lanka Rupee"
|
| 4132 |
msgstr ""
|
| 4133 |
|
| 4134 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:703
|
| 4135 |
msgid "Sweden Krona"
|
| 4136 |
msgstr ""
|
| 4137 |
|
| 4138 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:704
|
| 4139 |
msgid "Switzerland Franc"
|
| 4140 |
msgstr ""
|
| 4141 |
|
| 4142 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:705
|
| 4143 |
msgid "Suriname Dollar"
|
| 4144 |
msgstr ""
|
| 4145 |
|
| 4146 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:706
|
| 4147 |
msgid "Syria Pound"
|
| 4148 |
msgstr ""
|
| 4149 |
|
| 4150 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:707
|
| 4151 |
msgid "Taiwan New Dollar"
|
| 4152 |
msgstr ""
|
| 4153 |
|
| 4154 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:708
|
| 4155 |
msgid "Thailand Baht"
|
| 4156 |
msgstr ""
|
| 4157 |
|
| 4158 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:709
|
| 4159 |
msgid "Trinidad and Tobago Dollar"
|
| 4160 |
msgstr ""
|
| 4161 |
|
| 4162 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:710, ../profile-builder-2.0/admin/manage-fields.php:711
|
| 4163 |
msgid "Turkey Lira"
|
| 4164 |
msgstr ""
|
| 4165 |
|
| 4166 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:712
|
| 4167 |
msgid "Tuvalu Dollar"
|
| 4168 |
msgstr ""
|
| 4169 |
|
| 4170 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:713
|
| 4171 |
msgid "Ukraine Hryvna"
|
| 4172 |
msgstr ""
|
| 4173 |
|
| 4174 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:714
|
| 4175 |
msgid "United Kingdom Pound"
|
| 4176 |
msgstr ""
|
| 4177 |
|
| 4178 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:715
|
| 4179 |
msgid "Uganda Shilling"
|
| 4180 |
msgstr ""
|
| 4181 |
|
| 4182 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:716
|
| 4183 |
msgid "US Dollar"
|
| 4184 |
msgstr ""
|
| 4185 |
|
| 4186 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:717
|
| 4187 |
msgid "Uruguay Peso"
|
| 4188 |
msgstr ""
|
| 4189 |
|
| 4190 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:718
|
| 4191 |
msgid "Uzbekistan Som"
|
| 4192 |
msgstr ""
|
| 4193 |
|
| 4194 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:719
|
| 4195 |
msgid "Venezuela Bolivar"
|
| 4196 |
msgstr ""
|
| 4197 |
|
| 4198 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:720
|
| 4199 |
msgid "Viet Nam Dong"
|
| 4200 |
msgstr ""
|
| 4201 |
|
| 4202 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:721
|
| 4203 |
msgid "Yemen Rial"
|
| 4204 |
msgstr ""
|
| 4205 |
|
| 4206 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:722
|
| 4207 |
msgid "Zimbabwe Dollar"
|
| 4208 |
msgstr ""
|
| 4209 |
|
| 4210 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1024, ../profile-builder-2.0/admin/manage-fields.php:1181
|
| 4211 |
msgid ""
|
| 4212 |
"You must select a field\n"
|
| 4213 |
""
|
| 4214 |
msgstr ""
|
| 4215 |
|
| 4216 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1034
|
| 4217 |
msgid ""
|
| 4218 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
| 4219 |
""
|
| 4220 |
msgstr ""
|
| 4221 |
|
| 4222 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1045
|
| 4223 |
msgid ""
|
| 4224 |
"The entered avatar size is not between 20 and 200\n"
|
| 4225 |
""
|
| 4226 |
msgstr ""
|
| 4227 |
|
| 4228 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1048
|
| 4229 |
msgid ""
|
| 4230 |
"The entered avatar size is not numerical\n"
|
| 4231 |
""
|
| 4232 |
msgstr ""
|
| 4233 |
|
| 4234 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1056
|
| 4235 |
msgid ""
|
| 4236 |
"The entered row number is not numerical\n"
|
| 4237 |
""
|
| 4238 |
msgstr ""
|
| 4239 |
|
| 4240 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1059
|
| 4241 |
msgid ""
|
| 4242 |
"You must enter a value for the row number\n"
|
| 4243 |
""
|
| 4244 |
msgstr ""
|
| 4245 |
|
| 4246 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1067
|
| 4247 |
msgid ""
|
| 4248 |
"You must enter the site key\n"
|
| 4249 |
""
|
| 4250 |
msgstr ""
|
| 4251 |
|
| 4252 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1069
|
| 4253 |
msgid ""
|
| 4254 |
"You must enter the secret key\n"
|
| 4255 |
""
|
| 4256 |
msgstr ""
|
| 4257 |
|
| 4258 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1080
|
| 4259 |
msgid ""
|
| 4260 |
"The entered value for the Datepicker is not a valid date-format\n"
|
| 4261 |
""
|
| 4262 |
msgstr ""
|
| 4263 |
|
| 4264 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1083
|
| 4265 |
msgid ""
|
| 4266 |
"You must enter a value for the date-format\n"
|
| 4267 |
""
|
| 4268 |
msgstr ""
|
| 4269 |
|
| 4270 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1099
|
| 4271 |
msgid ""
|
| 4272 |
"The meta-name cannot be empty\n"
|
| 4273 |
""
|
| 4274 |
msgstr ""
|
| 4275 |
|
| 4276 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1111, ../profile-builder-2.0/admin/manage-fields.php:1119, ../profile-builder-2.0/admin/manage-fields.php:1130
|
| 4277 |
msgid ""
|
| 4278 |
"That meta-name is already in use\n"
|
| 4279 |
""
|
| 4280 |
msgstr ""
|
| 4281 |
|
| 4282 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1141
|
| 4283 |
msgid ""
|
| 4284 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
| 4285 |
""
|
| 4286 |
msgstr ""
|
| 4287 |
|
| 4288 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1161
|
| 4289 |
msgid ""
|
| 4290 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
| 4291 |
""
|
| 4292 |
msgstr ""
|
| 4293 |
|
| 4294 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1165
|
| 4295 |
msgid ""
|
| 4296 |
"The following option did not coincide with the ones in the options list: %s\n"
|
| 4297 |
""
|
| 4298 |
msgstr ""
|
| 4299 |
|
| 4300 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1172
|
| 4301 |
msgid ""
|
| 4302 |
"Please select at least one user role\n"
|
| 4303 |
""
|
| 4304 |
msgstr ""
|
| 4305 |
|
| 4306 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1188
|
| 4307 |
msgid ""
|
| 4308 |
"That field is already added in this form\n"
|
| 4309 |
""
|
| 4310 |
msgstr ""
|
| 4311 |
|
| 4312 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1239
|
| 4313 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
| 4314 |
msgstr ""
|
| 4315 |
|
| 4316 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1254
|
| 4317 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
| 4318 |
msgstr ""
|
| 4319 |
|
| 4320 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1263
|
| 4321 |
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."
|
| 4322 |
msgstr ""
|
| 4323 |
|
| 4324 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1265
|
| 4325 |
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."
|
| 4326 |
msgstr ""
|
| 4327 |
|
| 4328 |
+
#: ../profile-builder-2.0/admin/manage-fields.php:1362
|
| 4329 |
msgid "Search Location"
|
| 4330 |
msgstr ""
|
| 4331 |
|
| 4441 |
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."
|
| 4442 |
msgstr ""
|
| 4443 |
|
| 4444 |
+
#: ../profile-builder-2.0/admin/private-website.php:127, ../profile-builder-2.0/features/functions.php:762, includes/views/view-emails.php:37, includes/views/view-fields.php:169, includes/views/view-forms.php:282, 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:394
|
| 4445 |
msgid "Save Changes"
|
| 4446 |
msgstr ""
|
| 4447 |
|
| 4609 |
msgid "You must be logged in to edit your profile."
|
| 4610 |
msgstr ""
|
| 4611 |
|
| 4612 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:263, ../profile-builder-2.0/front-end/login.php:479
|
| 4613 |
msgid "You are not allowed to do this."
|
| 4614 |
msgstr ""
|
| 4615 |
|
| 4645 |
msgid "User to edit:"
|
| 4646 |
msgstr ""
|
| 4647 |
|
| 4648 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:683
|
| 4649 |
+
msgid "Select User"
|
| 4650 |
+
msgstr ""
|
| 4651 |
+
|
| 4652 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:701
|
| 4653 |
+
msgid "There are no other users to edit"
|
| 4654 |
+
msgstr ""
|
| 4655 |
+
|
| 4656 |
+
#: ../profile-builder-2.0/front-end/class-formbuilder.php:719
|
| 4657 |
msgid "Something went wrong. Please try again!"
|
| 4658 |
msgstr ""
|
| 4659 |
|
| 4660 |
+
#: ../profile-builder-2.0/front-end/login.php:309, ../profile-builder-2.0/front-end/login.php:330, ../profile-builder-2.0/front-end/recover.php:17, ../profile-builder-2.0/front-end/recover.php:249, ../profile-builder-2.0/front-end/extra-fields/extra-fields.php:94
|
| 4661 |
msgid "ERROR"
|
| 4662 |
msgstr ""
|
| 4663 |
|
| 4664 |
+
#: ../profile-builder-2.0/front-end/login.php:312
|
| 4665 |
msgid "The password you entered is incorrect."
|
| 4666 |
msgstr ""
|
| 4667 |
|
| 4668 |
+
#: ../profile-builder-2.0/front-end/login.php:317
|
| 4669 |
+
msgid "Invalid email."
|
| 4670 |
msgstr ""
|
| 4671 |
|
| 4672 |
+
#: ../profile-builder-2.0/front-end/login.php:319
|
| 4673 |
+
msgid "Invalid username or email."
|
| 4674 |
msgstr ""
|
| 4675 |
|
| 4676 |
+
#: ../profile-builder-2.0/front-end/login.php:321
|
| 4677 |
msgid "Invalid username."
|
| 4678 |
msgstr ""
|
| 4679 |
|
| 4680 |
+
#: ../profile-builder-2.0/front-end/login.php:325
|
| 4681 |
+
msgid "Password Lost and Found."
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4682 |
msgstr ""
|
| 4683 |
|
| 4684 |
+
#: ../profile-builder-2.0/front-end/login.php:325
|
| 4685 |
+
msgid "Lost your password"
|
| 4686 |
msgstr ""
|
| 4687 |
|
| 4688 |
+
#: ../profile-builder-2.0/front-end/login.php:330
|
| 4689 |
msgid "Both fields are empty."
|
| 4690 |
msgstr ""
|
| 4691 |
|
| 4692 |
+
#: ../profile-builder-2.0/front-end/login.php:393
|
| 4693 |
msgid "Username or Email"
|
| 4694 |
msgstr ""
|
| 4695 |
|
| 4696 |
+
#: ../profile-builder-2.0/front-end/login.php:427
|
| 4697 |
msgid "Lost your password?"
|
| 4698 |
msgstr ""
|
| 4699 |
|
| 4700 |
+
#: ../profile-builder-2.0/front-end/login.php:466, ../profile-builder-2.0/front-end/logout.php:25
|
| 4701 |
msgid "Log out of this account"
|
| 4702 |
msgstr ""
|
| 4703 |
|
| 4704 |
+
#: ../profile-builder-2.0/front-end/login.php:466
|
| 4705 |
msgid "Log out"
|
| 4706 |
msgstr ""
|
| 4707 |
|
| 4708 |
+
#: ../profile-builder-2.0/front-end/login.php:467
|
| 4709 |
msgid "You are currently logged in as %1$s. %2$s"
|
| 4710 |
msgstr ""
|
| 4711 |
|
| 4837 |
msgid "Your email was successfully confirmed."
|
| 4838 |
msgstr ""
|
| 4839 |
|
| 4840 |
+
#: ../profile-builder-2.0/front-end/register.php:125, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:649
|
| 4841 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
| 4842 |
msgstr ""
|
| 4843 |
|
| 4869 |
msgid "Inactive"
|
| 4870 |
msgstr ""
|
| 4871 |
|
| 4872 |
+
#: includes/emails/passwordless-login-tag.php:13
|
| 4873 |
+
msgid "Passwordless Login URL"
|
| 4874 |
+
msgstr ""
|
| 4875 |
+
|
| 4876 |
+
#: includes/fields/restricted-words.php:24, includes/forms/restricted-email-domains.php:19, includes/forms/restricted-email-domains.php:24
|
| 4877 |
+
msgid "$validation_message"
|
| 4878 |
+
msgstr ""
|
| 4879 |
+
|
| 4880 |
+
#: includes/shortcodes/resend-activation.php:5
|
| 4881 |
+
msgid "Resend activation email"
|
| 4882 |
+
msgstr ""
|
| 4883 |
+
|
| 4884 |
+
#: includes/views/view-emails.php:14
|
| 4885 |
+
msgid "Enable Passwordless Login tag"
|
| 4886 |
+
msgstr ""
|
| 4887 |
+
|
| 4888 |
+
#: includes/views/view-emails.php:23
|
| 4889 |
+
msgid "Adds a new tag to the email customizers: <strong>{{{passwordless_login_url}}}</strong>."
|
| 4890 |
+
msgstr ""
|
| 4891 |
+
|
| 4892 |
+
#: includes/views/view-emails.php:26
|
| 4893 |
+
msgid "You can include this in certain User emails to give your users the ability to login instantly."
|
| 4894 |
+
msgstr ""
|
| 4895 |
+
|
| 4896 |
+
#: includes/views/view-emails.php:29
|
| 4897 |
+
msgid "This feature won't work at all if Admin Approval is enabled."
|
| 4898 |
+
msgstr ""
|
| 4899 |
+
|
| 4900 |
+
#: includes/views/view-fields.php:14
|
| 4901 |
+
msgid "Automatically generate password for users"
|
| 4902 |
+
msgstr ""
|
| 4903 |
+
|
| 4904 |
+
#: includes/views/view-fields.php:23
|
| 4905 |
+
msgid "By checking this option, the password will be automatically generated and emailed to the user."
|
| 4906 |
+
msgstr ""
|
| 4907 |
+
|
| 4908 |
+
#: includes/views/view-fields.php:31
|
| 4909 |
+
msgid "Datepicker starts on Monday"
|
| 4910 |
+
msgstr ""
|
| 4911 |
+
|
| 4912 |
+
#: includes/views/view-fields.php:40
|
| 4913 |
+
msgid "Will make all Datepickers use Monday as the first day of the week."
|
| 4914 |
+
msgstr ""
|
| 4915 |
+
|
| 4916 |
+
#: includes/views/view-fields.php:53
|
| 4917 |
+
msgid "Hide Repeater Fields from the back-end profile page"
|
| 4918 |
+
msgstr ""
|
| 4919 |
+
|
| 4920 |
+
#: includes/views/view-fields.php:62
|
| 4921 |
+
msgid "Repeater Fields from Profile Builder do not work on the back-end user profile page, they are just displayed. If you want to remove them completely, you can use this option."
|
| 4922 |
+
msgstr ""
|
| 4923 |
+
|
| 4924 |
+
#: includes/views/view-fields.php:65
|
| 4925 |
+
msgid "You will still be able to use them from a front-end edit profile form."
|
| 4926 |
+
msgstr ""
|
| 4927 |
+
|
| 4928 |
+
#: includes/views/view-fields.php:73
|
| 4929 |
+
msgid "Always capitalize `First Name` and `Last Name` default fields"
|
| 4930 |
+
msgstr ""
|
| 4931 |
+
|
| 4932 |
+
#: includes/views/view-fields.php:82
|
| 4933 |
+
msgid "If you have these fields in your forms, they will be always saved with the first letter as uppercase."
|
| 4934 |
+
msgstr ""
|
| 4935 |
+
|
| 4936 |
+
#: includes/views/view-fields.php:85
|
| 4937 |
+
msgid "eg.: <strong>Jhon Doe</strong> instead of <strong>jhon doe</strong>"
|
| 4938 |
+
msgstr ""
|
| 4939 |
+
|
| 4940 |
+
#: includes/views/view-fields.php:92
|
| 4941 |
+
msgid "Ban certain words from being used in fields"
|
| 4942 |
+
msgstr ""
|
| 4943 |
+
|
| 4944 |
+
#: includes/views/view-fields.php:99, includes/views/view-forms.php:21
|
| 4945 |
+
msgid "On"
|
| 4946 |
+
msgstr ""
|
| 4947 |
+
|
| 4948 |
+
#: includes/views/view-fields.php:107
|
| 4949 |
+
msgid "Affected fields:"
|
| 4950 |
+
msgstr ""
|
| 4951 |
+
|
| 4952 |
+
#: includes/views/view-fields.php:131
|
| 4953 |
+
msgid "Banned words:"
|
| 4954 |
+
msgstr ""
|
| 4955 |
+
|
| 4956 |
+
#: includes/views/view-fields.php:150, includes/views/view-forms.php:66
|
| 4957 |
+
msgid "Error message:"
|
| 4958 |
+
msgstr ""
|
| 4959 |
+
|
| 4960 |
+
#: includes/views/view-fields.php:161
|
| 4961 |
+
msgid "Allows you to define some words which users cannot use in their Username, First Name or Last Name when registering."
|
| 4962 |
+
msgstr ""
|
| 4963 |
+
|
| 4964 |
+
#: includes/views/view-forms.php:14
|
| 4965 |
+
msgid "Allow or deny email domains from registering"
|
| 4966 |
+
msgstr ""
|
| 4967 |
+
|
| 4968 |
+
#: includes/views/view-forms.php:29
|
| 4969 |
+
msgid "Type:"
|
| 4970 |
+
msgstr ""
|
| 4971 |
+
|
| 4972 |
+
#: includes/views/view-forms.php:34
|
| 4973 |
+
msgid "Allow"
|
| 4974 |
+
msgstr ""
|
| 4975 |
+
|
| 4976 |
+
#: includes/views/view-forms.php:40
|
| 4977 |
+
msgid "Deny"
|
| 4978 |
+
msgstr ""
|
| 4979 |
+
|
| 4980 |
+
#: includes/views/view-forms.php:47
|
| 4981 |
+
msgid "Restricted domains:"
|
| 4982 |
+
msgstr ""
|
| 4983 |
+
|
| 4984 |
+
#: includes/views/view-forms.php:77
|
| 4985 |
+
msgid "This option lets you allow registrations only from certain domains or deny registrations from certain domains."
|
| 4986 |
+
msgstr ""
|
| 4987 |
+
|
| 4988 |
+
#: includes/views/view-forms.php:80
|
| 4989 |
+
msgid "You should add only the domain in the list from above. eg.: gmail.com"
|
| 4990 |
+
msgstr ""
|
| 4991 |
+
|
| 4992 |
+
#: includes/views/view-forms.php:92
|
| 4993 |
+
msgid "Forms that should bypass Email Confirmation"
|
| 4994 |
+
msgstr ""
|
| 4995 |
+
|
| 4996 |
+
#: includes/views/view-forms.php:119
|
| 4997 |
+
msgid "Users registering through any of the selected forms will not need to confirm their email address."
|
| 4998 |
+
msgstr ""
|
| 4999 |
+
|
| 5000 |
+
#: includes/views/view-forms.php:127
|
| 5001 |
+
msgid "Remember me checked by default"
|
| 5002 |
+
msgstr ""
|
| 5003 |
+
|
| 5004 |
+
#: includes/views/view-forms.php:136
|
| 5005 |
+
msgid "Check the `Remember Me` checkbox on Login forms, by default."
|
| 5006 |
+
msgstr ""
|
| 5007 |
+
|
| 5008 |
+
#: includes/views/view-forms.php:142
|
| 5009 |
+
msgid "Remove validation from back-end profile page"
|
| 5010 |
+
msgstr ""
|
| 5011 |
+
|
| 5012 |
+
#: includes/views/view-forms.php:151
|
| 5013 |
+
msgid "When saving the back-end user profile, Profile Builder fields will not be validated anymore. eg.: bypass required attribute"
|
| 5014 |
+
msgstr ""
|
| 5015 |
+
|
| 5016 |
+
#: includes/views/view-forms.php:158
|
| 5017 |
+
msgid "Consider `Anyone can Register` WordPress option"
|
| 5018 |
+
msgstr ""
|
| 5019 |
+
|
| 5020 |
+
#: includes/views/view-forms.php:168
|
| 5021 |
+
msgid "setting"
|
| 5022 |
+
msgstr ""
|
| 5023 |
+
|
| 5024 |
+
#: includes/views/view-forms.php:170
|
| 5025 |
+
msgid "By default, Profile Builder ignores this %1$s. If you check this option, our registration form will consider it."
|
| 5026 |
+
msgstr ""
|
| 5027 |
+
|
| 5028 |
+
#: includes/views/view-forms.php:178
|
| 5029 |
+
msgid "Modify default Redirect Delay timer"
|
| 5030 |
+
msgstr ""
|
| 5031 |
+
|
| 5032 |
+
#: includes/views/view-forms.php:185
|
| 5033 |
+
msgid "This allows you to change the amount of seconds it takes for the <strong>`After Registration`</strong> redirect to happen."
|
| 5034 |
+
msgstr ""
|
| 5035 |
+
|
| 5036 |
+
#: includes/views/view-forms.php:188
|
| 5037 |
+
msgid "The default is 3 seconds. Leave empty if you do not want to change it."
|
| 5038 |
+
msgstr ""
|
| 5039 |
+
|
| 5040 |
+
#: includes/views/view-forms.php:196
|
| 5041 |
+
msgid "Save Admin Approval status in usermeta"
|
| 5042 |
+
msgstr ""
|
| 5043 |
+
|
| 5044 |
+
#: includes/views/view-forms.php:205
|
| 5045 |
+
msgid "By default, the Admin Approval status is saved as a custom taxonomy that is attached to the user."
|
| 5046 |
+
msgstr ""
|
| 5047 |
+
|
| 5048 |
+
#: includes/views/view-forms.php:208
|
| 5049 |
+
msgid "If you check this option, the status will also be saved in the `*_usermeta` table under the <strong>wppb_approval_status</strong> meta name."
|
| 5050 |
+
msgstr ""
|
| 5051 |
+
|
| 5052 |
+
#: includes/views/view-forms.php:217
|
| 5053 |
+
msgid "Redirect `/author` page if user is not approved"
|
| 5054 |
+
msgstr ""
|
| 5055 |
+
|
| 5056 |
+
#: includes/views/view-forms.php:226
|
| 5057 |
+
msgid "By default, users placed in Admin Approval will not be able to login, but the Author pages will be toolboxessible."
|
| 5058 |
+
msgstr ""
|
| 5059 |
+
|
| 5060 |
+
#: includes/views/view-forms.php:229
|
| 5061 |
+
msgid "Using this option you can redirect these pages, sending users who try to toolboxess them to your home page."
|
| 5062 |
+
msgstr ""
|
| 5063 |
+
|
| 5064 |
+
#: includes/views/view-forms.php:237
|
| 5065 |
+
msgid "Save `Last Login` date in usermeta"
|
| 5066 |
+
msgstr ""
|
| 5067 |
+
|
| 5068 |
+
#: includes/views/view-forms.php:246
|
| 5069 |
+
msgid "By checking this option, each time a user logins, the date and time will be saved in the database."
|
| 5070 |
+
msgstr ""
|
| 5071 |
+
|
| 5072 |
+
#: includes/views/view-forms.php:249
|
| 5073 |
+
msgid "The meta name for the field will be <strong>last_login_date</strong>."
|
| 5074 |
+
msgstr ""
|
| 5075 |
+
|
| 5076 |
+
#: includes/views/view-forms.php:252, includes/views/view-forms.php:274
|
| 5077 |
+
msgid "You can <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/manage-user-fields/#Manage_existing_custom_fields_with_Profile_Builder\" target=\"_blank\">create a field with this meta name</a> in Profile Builder to display it in the Userlisting or Edit Profile forms."
|
| 5078 |
+
msgstr ""
|
| 5079 |
+
|
| 5080 |
+
#: includes/views/view-forms.php:259
|
| 5081 |
+
msgid "Save `Last Profile Update` date in usermeta"
|
| 5082 |
+
msgstr ""
|
| 5083 |
+
|
| 5084 |
+
#: includes/views/view-forms.php:268
|
| 5085 |
+
msgid "By checking this option, each time a modifies his profile the date and time will be saved in the database."
|
| 5086 |
+
msgstr ""
|
| 5087 |
+
|
| 5088 |
+
#: includes/views/view-forms.php:271
|
| 5089 |
+
msgid "The meta name for the field will be <strong>last_profile_update_date</strong>."
|
| 5090 |
+
msgstr ""
|
| 5091 |
+
|
| 5092 |
+
#: includes/views/view-shortcodes.php:12
|
| 5093 |
+
msgid "Enable Compare shortcode"
|
| 5094 |
+
msgstr ""
|
| 5095 |
+
|
| 5096 |
+
#: includes/views/view-shortcodes.php:21
|
| 5097 |
+
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/compare-shortcode/\">this url</a>."
|
| 5098 |
+
msgstr ""
|
| 5099 |
+
|
| 5100 |
+
#: includes/views/view-shortcodes.php:28
|
| 5101 |
+
msgid "Enable Usermeta shortcode"
|
| 5102 |
+
msgstr ""
|
| 5103 |
+
|
| 5104 |
+
#: includes/views/view-shortcodes.php:37
|
| 5105 |
+
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/display-user-meta/\">this url</a>."
|
| 5106 |
+
msgstr ""
|
| 5107 |
+
|
| 5108 |
+
#: includes/views/view-shortcodes.php:44
|
| 5109 |
+
msgid "Enable Resend Activation Email shortcode"
|
| 5110 |
+
msgstr ""
|
| 5111 |
+
|
| 5112 |
+
#: includes/views/view-shortcodes.php:53
|
| 5113 |
+
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/resend-confirmation-email/\">this url</a>."
|
| 5114 |
+
msgstr ""
|
| 5115 |
+
|
| 5116 |
+
#: includes/views/view-shortcodes.php:60
|
| 5117 |
+
msgid "Enable Format Date shortcode"
|
| 5118 |
+
msgstr ""
|
| 5119 |
+
|
| 5120 |
+
#: includes/views/view-shortcodes.php:69
|
| 5121 |
+
msgid "You can read more info about this shortcode by following <a href=\"https://www.cozmoslabs.com/docs/profile-builder-2/developers-knowledge-base/shortcodes/format-date-shortcode/\">this url</a>."
|
| 5122 |
+
msgstr ""
|
| 5123 |
+
|
| 5124 |
+
#: includes/views/view-userlisting.php:12
|
| 5125 |
+
msgid "Change placeholder text for Search box"
|
| 5126 |
+
msgstr ""
|
| 5127 |
+
|
| 5128 |
+
#: includes/views/view-userlisting.php:19
|
| 5129 |
+
msgid "This refers to the placeholder text from the <strong>{{{extra_search_all_fields}}}</strong> tag."
|
| 5130 |
+
msgstr ""
|
| 5131 |
+
|
| 5132 |
+
#: includes/views/view-userlisting.php:22
|
| 5133 |
+
msgid "Default text is <strong>Search Users by All Fields</strong>, use this option to change it to something else. Leave empty if you do not want to change it."
|
| 5134 |
+
msgstr ""
|
| 5135 |
+
|
| 5136 |
+
#: includes/views/view-userlisting.php:29
|
| 5137 |
+
msgid "Modify base URL for Single Userlisting"
|
| 5138 |
+
msgstr ""
|
| 5139 |
+
|
| 5140 |
+
#: includes/views/view-userlisting.php:37
|
| 5141 |
+
msgid "By default Single Userlisting URLs contain the word <strong>user</strong>. eg.: "
|
| 5142 |
+
msgstr ""
|
| 5143 |
+
|
| 5144 |
+
#: includes/views/view-userlisting.php:42
|
| 5145 |
+
msgid "Using this option, you can change the word <strong>user</strong> to something else. Leave empty if you do not want to change it."
|
| 5146 |
+
msgstr ""
|
| 5147 |
+
|
| 5148 |
+
#: includes/views/view-userlisting.php:49
|
| 5149 |
+
msgid "Make the Single Userlisting URLs work with user nicename"
|
| 5150 |
+
msgstr ""
|
| 5151 |
+
|
| 5152 |
+
#: includes/views/view-userlisting.php:59
|
| 5153 |
+
msgid "By default Single Userlisting URLs are generated using the users ID. eg.: "
|
| 5154 |
+
msgstr ""
|
| 5155 |
+
|
| 5156 |
+
#: includes/views/view-userlisting.php:64
|
| 5157 |
+
msgid "With this option activated, the URLs will be generated using the users <strong>nicename</strong>."
|
| 5158 |
+
msgstr ""
|
| 5159 |
+
|
| 5160 |
+
#: includes/views/view-userlisting.php:71
|
| 5161 |
+
msgid "Remove repetition counts from Faceted Menus"
|
| 5162 |
+
msgstr ""
|
| 5163 |
+
|
| 5164 |
+
#: includes/views/view-userlisting.php:80
|
| 5165 |
+
msgid "The number of users that share a particular value is shown for the Select and Checkbox facet types."
|
| 5166 |
+
msgstr ""
|
| 5167 |
+
|
| 5168 |
+
#: includes/views/view-userlisting.php:83
|
| 5169 |
+
msgid "If you enable this option they will be hidden."
|
| 5170 |
+
msgstr ""
|
| 5171 |
+
|
| 5172 |
#: ../profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
|
| 5173 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
| 5174 |
msgstr ""
|
| 5549 |
msgid "[%1$s] Your new account information"
|
| 5550 |
msgstr ""
|
| 5551 |
|
| 5552 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:580, ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:590, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:498, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:505, ../profile-builder-2.0/modules/email-customizer/email-customizer.php:519
|
| 5553 |
msgid "Your selected password at signup"
|
| 5554 |
msgstr ""
|
| 5555 |
|
| 5556 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:586
|
| 5557 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and the password you selected on registration.<br/><br/>Access your account: %3$s "
|
| 5558 |
msgstr ""
|
| 5559 |
|
| 5560 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:588
|
| 5561 |
+
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
| 5562 |
msgstr ""
|
| 5563 |
|
| 5564 |
+
#: ../profile-builder-2.0/features/email-confirmation/email-confirmation.php:641
|
| 5565 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
| 5566 |
msgstr ""
|
| 5567 |
|
| 5901 |
""
|
| 5902 |
msgstr ""
|
| 5903 |
|
| 5904 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:72, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:103, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:134, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:75, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:106, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:138, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:169, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:201, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:233, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:265, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:299
|
| 5905 |
msgid "Email Subject"
|
| 5906 |
msgstr ""
|
| 5907 |
|
| 5908 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:79, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:110, ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:82, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:113, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:145, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:176, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:208, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:240, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:272, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:306
|
| 5909 |
+
msgid "Enable email"
|
| 5910 |
+
msgstr ""
|
| 5911 |
+
|
| 5912 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:94
|
| 5913 |
msgid "Default Registration & Registration with Email Confirmation"
|
| 5914 |
msgstr ""
|
| 5915 |
|
| 5916 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:97
|
| 5917 |
msgid ""
|
| 5918 |
"<p>New subscriber on {{site_name}}.</p>\n"
|
| 5919 |
"<p>Username:{{username}}</p>\n"
|
| 5922 |
"so please remember that you need to approve this user before he/she can log in!</p>"
|
| 5923 |
msgstr ""
|
| 5924 |
|
| 5925 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:125, ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:160
|
| 5926 |
msgid "Registration with Admin Approval"
|
| 5927 |
msgstr ""
|
| 5928 |
|
| 5929 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:128
|
| 5930 |
msgid ""
|
| 5931 |
"<p>{{username}} has requested a password change via the password reset feature.</p>\n"
|
| 5932 |
"<p>His/her new password is: {{password}}</p>\n"
|
| 5933 |
""
|
| 5934 |
msgstr ""
|
| 5935 |
|
| 5936 |
+
#: ../profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:156
|
| 5937 |
msgid "Admin Notification for User Password Reset"
|
| 5938 |
msgstr ""
|
| 5939 |
|
| 6024 |
""
|
| 6025 |
msgstr ""
|
| 6026 |
|
| 6027 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:102
|
| 6028 |
msgid ""
|
| 6029 |
"<p>To activate your user, please click the following link:<br/>\n"
|
| 6030 |
"{{{activation_link}}}</p>\n"
|
| 6032 |
""
|
| 6033 |
msgstr ""
|
| 6034 |
|
| 6035 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:110
|
| 6036 |
msgid "[{{site_name}}] Activate {{username}}"
|
| 6037 |
msgstr ""
|
| 6038 |
|
| 6039 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
|
| 6040 |
msgid "Registration with Email Confirmation"
|
| 6041 |
msgstr ""
|
| 6042 |
|
| 6043 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:134
|
| 6044 |
msgid ""
|
| 6045 |
"<h3>Welcome to {{site_name}}!</h3>\n"
|
| 6046 |
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
| 6048 |
""
|
| 6049 |
msgstr ""
|
| 6050 |
|
| 6051 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:142
|
| 6052 |
msgid "A new account has been created for you on {{site_name}}"
|
| 6053 |
msgstr ""
|
| 6054 |
|
| 6055 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:165
|
| 6056 |
msgid ""
|
| 6057 |
"<h3>Good News!</h3>\n"
|
| 6058 |
"<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
|
| 6059 |
""
|
| 6060 |
msgstr ""
|
| 6061 |
|
| 6062 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:173
|
| 6063 |
msgid "Your account on {{site_name}} has been approved!"
|
| 6064 |
msgstr ""
|
| 6065 |
|
| 6066 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:191
|
| 6067 |
msgid "User Approval Notification"
|
| 6068 |
msgstr ""
|
| 6069 |
|
| 6070 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:196
|
| 6071 |
msgid ""
|
| 6072 |
"<h3>Hello,</h3>\n"
|
| 6073 |
"<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
|
| 6074 |
""
|
| 6075 |
msgstr ""
|
| 6076 |
|
| 6077 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:205
|
| 6078 |
msgid "Your account on {{site_name}} has been unapproved!"
|
| 6079 |
msgstr ""
|
| 6080 |
|
| 6081 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:223
|
| 6082 |
msgid "Unapproved User Notification"
|
| 6083 |
msgstr ""
|
| 6084 |
|
| 6085 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
|
| 6086 |
msgid ""
|
| 6087 |
"<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
|
| 6088 |
"Username: {{username}}</p>\n"
|
| 6092 |
""
|
| 6093 |
msgstr ""
|
| 6094 |
|
| 6095 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:237
|
| 6096 |
msgid "[{{site_name}}] Password Reset"
|
| 6097 |
msgstr ""
|
| 6098 |
|
| 6099 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:255
|
| 6100 |
msgid "Password Reset Email"
|
| 6101 |
msgstr ""
|
| 6102 |
|
| 6103 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:261
|
| 6104 |
msgid ""
|
| 6105 |
"<p>You have successfully reset your password.</p>\n"
|
| 6106 |
""
|
| 6107 |
msgstr ""
|
| 6108 |
|
| 6109 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:269
|
| 6110 |
msgid "[{{site_name}}] Password Reset Successfully"
|
| 6111 |
msgstr ""
|
| 6112 |
|
| 6113 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:287
|
| 6114 |
msgid "Password Reset Success Email"
|
| 6115 |
msgstr ""
|
| 6116 |
|
| 6117 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:295
|
| 6118 |
msgid ""
|
| 6119 |
"<h3>Hi {{username}},</h3>\n"
|
| 6120 |
"<p>This notice confirms that your email was changed on {{site_name}}.</p>\n"
|
| 6125 |
"<a href=\"{{site_url}}\">{{site_url}}</a></p>"
|
| 6126 |
msgstr ""
|
| 6127 |
|
| 6128 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:303
|
| 6129 |
msgid "[{{site_name}}] Notice of Email Change"
|
| 6130 |
msgstr ""
|
| 6131 |
|
| 6132 |
+
#: ../profile-builder-2.0/modules/email-customizer/user-email-customizer.php:321
|
| 6133 |
msgid "Changed Email Address Notification"
|
| 6134 |
msgstr ""
|
| 6135 |
|
| 6733 |
msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
|
| 6734 |
msgstr ""
|
| 6735 |
|
| 6736 |
+
#: ../profile-builder-2.0/front-end/default-fields/email/email.php:51, ../profile-builder-2.0/front-end/extra-fields/input-email/input-email.php:70
|
| 6737 |
msgid "You must enter a valid email address."
|
| 6738 |
msgstr ""
|
| 6739 |
|
| 6797 |
msgid "This username is already reserved to be used soon."
|
| 6798 |
msgstr ""
|
| 6799 |
|
| 6800 |
+
#: ../profile-builder-2.0/front-end/extra-fields/input-url/input-url.php:70
|
| 6801 |
+
msgid "You must enter a valid URL."
|
| 6802 |
+
msgstr ""
|
| 6803 |
+
|
| 6804 |
#: ../profile-builder-2.0/front-end/extra-fields/map/map.php:46, ../profile-builder-2.0/front-end/extra-fields/map/map.php:69
|
| 6805 |
msgid "Please add the Google Maps API key for this field."
|
| 6806 |
msgstr ""
|
