Version Description
- Fixed a possible warning regarding user deletions and Email Confirmation
- Fixed dynamic redirect bug when private website is enabled
- Improved compatibility with Paid Member Subscriptions plugin
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.3.1 |
Comparing to | |
See all releases |
Code changes from version 3.3.0 to 3.3.1
- admin/manage-fields.php +1 -0
- assets/css/style-front-end.css +1 -1
- assets/js/jquery-manage-fields-live-change.js +2 -0
- features/functions.php +10 -2
- index.php +2 -2
- readme.txt +7 -2
- translation/profile-builder.catalog.php +7 -0
- translation/profile-builder.pot +560 -532
admin/manage-fields.php
CHANGED
@@ -182,6 +182,7 @@ function wppb_populate_manage_fields(){
|
|
182 |
array( 'type' => 'textarea', 'slug' => 'description', 'title' => __( 'Description', 'profile-builder' ), 'description' => __( 'Enter a (detailed) description of the option for end users to read<br/>Optional', 'profile-builder') ),
|
183 |
array( 'type' => 'text', 'slug' => 'row-count', 'title' => __( 'Row Count', 'profile-builder' ), 'default' => 5, 'description' => __( "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5", 'profile-builder' ) ),
|
184 |
array( 'type' => 'text', 'slug' => 'allowed-image-extensions', 'title' => __( 'Allowed Image Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)', 'profile-builder' ) ),
|
|
|
185 |
array( 'type' => 'text', 'slug' => 'allowed-upload-extensions', 'title' => __( 'Allowed Upload Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)', 'profile-builder' ) ),
|
186 |
array( 'type' => 'text', 'slug' => 'avatar-size', 'title' => __( 'Avatar Size', 'profile-builder' ), 'default' => 100, 'description' => __( "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", 'profile-builder' ) ),
|
187 |
array( 'type' => 'text', 'slug' => 'date-format', 'title' => __( 'Date-format', 'profile-builder' ), 'default' => 'mm/dd/yy', 'description' => __( '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, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy', 'profile-builder' ) ),
|
182 |
array( 'type' => 'textarea', 'slug' => 'description', 'title' => __( 'Description', 'profile-builder' ), 'description' => __( 'Enter a (detailed) description of the option for end users to read<br/>Optional', 'profile-builder') ),
|
183 |
array( 'type' => 'text', 'slug' => 'row-count', 'title' => __( 'Row Count', 'profile-builder' ), 'default' => 5, 'description' => __( "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5", 'profile-builder' ) ),
|
184 |
array( 'type' => 'text', 'slug' => 'allowed-image-extensions', 'title' => __( 'Allowed Image Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)', 'profile-builder' ) ),
|
185 |
+
array( 'type' => 'checkbox', 'slug' => 'simple-upload', 'title' => __( 'Use Simple Upload', 'profile-builder' ), 'options' => array( '%'.__('Yes','profile-builder').'%'.'yes' ), 'description' => __( 'Use a simple upload field instead of the WordPress upload', 'profile-builder' ) ),
|
186 |
array( 'type' => 'text', 'slug' => 'allowed-upload-extensions', 'title' => __( 'Allowed Upload Extensions', 'profile-builder' ), 'default' => '.*', 'description' => __( 'Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)', 'profile-builder' ) ),
|
187 |
array( 'type' => 'text', 'slug' => 'avatar-size', 'title' => __( 'Avatar Size', 'profile-builder' ), 'default' => 100, 'description' => __( "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100", 'profile-builder' ) ),
|
188 |
array( 'type' => 'text', 'slug' => 'date-format', 'title' => __( 'Date-format', 'profile-builder' ), 'default' => 'mm/dd/yy', 'description' => __( '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, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy', 'profile-builder' ) ),
|
assets/css/style-front-end.css
CHANGED
@@ -24,7 +24,7 @@
|
|
24 |
/*--------------------------------------------------------------
|
25 |
2.0 Forms
|
26 |
--------------------------------------------------------------*/
|
27 |
-
.wppb-user-forms input:not([type="button"]):not([type="reset"]):not([type="submit"]),
|
28 |
.wppb-user-forms select,
|
29 |
.wppb-user-forms textarea{
|
30 |
font-size: 100%; /* Corrects font size not being inherited in all browsers */
|
24 |
/*--------------------------------------------------------------
|
25 |
2.0 Forms
|
26 |
--------------------------------------------------------------*/
|
27 |
+
.wppb-user-forms input:not([type="button"]):not([type="reset"]):not([type="submit"]):not([type="file"]),
|
28 |
.wppb-user-forms select,
|
29 |
.wppb-user-forms textarea{
|
30 |
font-size: 100%; /* Corrects font size not being inherited in all browsers */
|
assets/js/jquery-manage-fields-live-change.js
CHANGED
@@ -417,6 +417,7 @@ var fields = {
|
|
417 |
'.row-field-title',
|
418 |
'.row-meta-name',
|
419 |
'.row-description',
|
|
|
420 |
'.row-allowed-extensions',
|
421 |
'.row-required',
|
422 |
'.row-allowed-upload-extensions'
|
@@ -427,6 +428,7 @@ var fields = {
|
|
427 |
'.row-field-title',
|
428 |
'.row-meta-name',
|
429 |
'.row-description',
|
|
|
430 |
'.row-allowed-image-extensions',
|
431 |
'.row-avatar-size',
|
432 |
'.row-required',
|
417 |
'.row-field-title',
|
418 |
'.row-meta-name',
|
419 |
'.row-description',
|
420 |
+
'.row-simple-upload',
|
421 |
'.row-allowed-extensions',
|
422 |
'.row-required',
|
423 |
'.row-allowed-upload-extensions'
|
428 |
'.row-field-title',
|
429 |
'.row-meta-name',
|
430 |
'.row-description',
|
431 |
+
'.row-simple-upload',
|
432 |
'.row-allowed-image-extensions',
|
433 |
'.row-avatar-size',
|
434 |
'.row-required',
|
features/functions.php
CHANGED
@@ -672,8 +672,13 @@ if ( is_admin() ){
|
|
672 |
$userLogin = $wpdb->get_var( $wpdb->prepare( "SELECT user_login, user_email FROM " . $wpdb->users . " WHERE ID = %d LIMIT 1", $user_id ) );
|
673 |
if ( is_multisite() )
|
674 |
$delete = $wpdb->delete( $wpdb->signups, array( 'user_login' => $userLogin ) );
|
675 |
-
|
676 |
-
|
|
|
|
|
|
|
|
|
|
|
677 |
}
|
678 |
|
679 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
@@ -1351,6 +1356,9 @@ function wppb_private_website_functionality(){
|
|
1351 |
|
1352 |
if( ( !in_array( $post_id, $allowed_pages ) && $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) || is_search() ){
|
1353 |
nocache_headers();
|
|
|
|
|
|
|
1354 |
wp_safe_redirect( $redirect_url );
|
1355 |
exit;
|
1356 |
}
|
672 |
$userLogin = $wpdb->get_var( $wpdb->prepare( "SELECT user_login, user_email FROM " . $wpdb->users . " WHERE ID = %d LIMIT 1", $user_id ) );
|
673 |
if ( is_multisite() )
|
674 |
$delete = $wpdb->delete( $wpdb->signups, array( 'user_login' => $userLogin ) );
|
675 |
+
else {
|
676 |
+
$table_name = $wpdb->prefix . 'signups';
|
677 |
+
$val = $wpdb->get_var( $wpdb->prepare( "SHOW TABLES LIKE %s", $table_name ) );
|
678 |
+
if ( $val ){
|
679 |
+
$delete = $wpdb->delete($wpdb->prefix . 'signups', array('user_login' => $userLogin));
|
680 |
+
}
|
681 |
+
}
|
682 |
}
|
683 |
|
684 |
$wppb_generalSettings = get_option( 'wppb_general_settings' );
|
1356 |
|
1357 |
if( ( !in_array( $post_id, $allowed_pages ) && $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) || is_search() ){
|
1358 |
nocache_headers();
|
1359 |
+
if( current_filter() == 'template_redirect' ) {
|
1360 |
+
$redirect_url = add_query_arg( 'wppb_referer_url', esc_url( wppb_curpageurl() ), $redirect_url );
|
1361 |
+
}
|
1362 |
wp_safe_redirect( $redirect_url );
|
1363 |
exit;
|
1364 |
}
|
index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
-
Version: 3.3.
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
@@ -65,7 +65,7 @@ function wppb_free_plugin_init() {
|
|
65 |
*
|
66 |
*
|
67 |
*/
|
68 |
-
define('PROFILE_BUILDER_VERSION', '3.3.
|
69 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
70 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
71 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: Profile Builder
|
4 |
Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
|
5 |
Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
|
6 |
+
Version: 3.3.1
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
65 |
*
|
66 |
*
|
67 |
*/
|
68 |
+
define('PROFILE_BUILDER_VERSION', '3.3.1' );
|
69 |
define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
70 |
define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
|
71 |
define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
|
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
-
Tested up to: 5.5.
|
7 |
-
Stable tag: 3.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -167,6 +167,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
167 |
12. Role Editor
|
168 |
|
169 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
170 |
= 3.3.0 =
|
171 |
* Add 'automatic_login' parameter for the [wppb-register] shortcode and make sure that the shortcode, multiple registration setting, general setting priority is respected.
|
172 |
* Pass the referer URL forward when the Login form shows an error so the user is still redirected to the page they came from.
|
3 |
Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
+
Tested up to: 5.5.3
|
7 |
+
Stable tag: 3.3.1
|
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 |
+
= 3.3.1 =
|
171 |
+
* Fixed a possible warning regarding user deletions and Email Confirmation
|
172 |
+
* Fixed dynamic redirect bug when private website is enabled
|
173 |
+
* Improved compatibility with Paid Member Subscriptions plugin
|
174 |
+
|
175 |
= 3.3.0 =
|
176 |
* Add 'automatic_login' parameter for the [wppb-register] shortcode and make sure that the shortcode, multiple registration setting, general setting priority is respected.
|
177 |
* Pass the referer URL forward when the Login form shows an error so the user is still redirected to the page they came from.
|
translation/profile-builder.catalog.php
CHANGED
@@ -556,6 +556,8 @@
|
|
556 |
<?php __("Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5", "profile-builder"); ?>
|
557 |
<?php __("Allowed Image Extensions", "profile-builder"); ?>
|
558 |
<?php __("Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)", "profile-builder"); ?>
|
|
|
|
|
559 |
<?php __("Allowed Upload Extensions", "profile-builder"); ?>
|
560 |
<?php __("Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)", "profile-builder"); ?>
|
561 |
<?php __("Avatar Size", "profile-builder"); ?>
|
@@ -1194,6 +1196,8 @@
|
|
1194 |
<?php __("By checking this option, you will allow users that have the 'delete_users' capability to access and use the Admin Approval list.", "profile-builder"); ?>
|
1195 |
<?php __("Allow users with the 'delete_users' capability to view the list of Unconfirmed Emails", "profile-builder"); ?>
|
1196 |
<?php __("By checking this option, you will allow users that have the 'delete_users' capability to see the list of Unconfirmed Email Addresses.", "profile-builder"); ?>
|
|
|
|
|
1197 |
<?php __("Automatically generate password for users", "profile-builder"); ?>
|
1198 |
<?php __("By checking this option, the password will be automatically generated and emailed to the user.", "profile-builder"); ?>
|
1199 |
<?php __("Modify 'Send Credentials' checkbox", "profile-builder"); ?>
|
@@ -1301,6 +1305,9 @@
|
|
1301 |
<?php __("An administrator has just approved your account on %1$s (%2$s).", "profile-builder"); ?>
|
1302 |
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature.", "profile-builder"); ?>
|
1303 |
<?php __("Your account has been successfully created!", "profile-builder"); ?>
|
|
|
|
|
|
|
1304 |
<?php __("The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. ", "profile-builder"); ?>
|
1305 |
<?php __("delete this user?", "profile-builder"); ?>
|
1306 |
<?php __("approve this user?", "profile-builder"); ?>
|
556 |
<?php __("Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5", "profile-builder"); ?>
|
557 |
<?php __("Allowed Image Extensions", "profile-builder"); ?>
|
558 |
<?php __("Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)", "profile-builder"); ?>
|
559 |
+
<?php __("Use Simple Upload", "profile-builder"); ?>
|
560 |
+
<?php __("Use a simple upload field instead of the WordPress upload", "profile-builder"); ?>
|
561 |
<?php __("Allowed Upload Extensions", "profile-builder"); ?>
|
562 |
<?php __("Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)", "profile-builder"); ?>
|
563 |
<?php __("Avatar Size", "profile-builder"); ?>
|
1196 |
<?php __("By checking this option, you will allow users that have the 'delete_users' capability to access and use the Admin Approval list.", "profile-builder"); ?>
|
1197 |
<?php __("Allow users with the 'delete_users' capability to view the list of Unconfirmed Emails", "profile-builder"); ?>
|
1198 |
<?php __("By checking this option, you will allow users that have the 'delete_users' capability to see the list of Unconfirmed Email Addresses.", "profile-builder"); ?>
|
1199 |
+
<?php __("Disable confirmation dialog for the {{approval_url}} or {{approval_link}} Email Customizer tags", "profile-builder"); ?>
|
1200 |
+
<?php __("By checking this option, you will disable the confirmation dialog, allowing you to approve new users simply by visiting the <strong>{{approval_url}}</strong> or <strong>{{approval_link}}</strong>.", "profile-builder"); ?>
|
1201 |
<?php __("Automatically generate password for users", "profile-builder"); ?>
|
1202 |
<?php __("By checking this option, the password will be automatically generated and emailed to the user.", "profile-builder"); ?>
|
1203 |
<?php __("Modify 'Send Credentials' checkbox", "profile-builder"); ?>
|
1305 |
<?php __("An administrator has just approved your account on %1$s (%2$s).", "profile-builder"); ?>
|
1306 |
<?php __("Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature.", "profile-builder"); ?>
|
1307 |
<?php __("Your account has been successfully created!", "profile-builder"); ?>
|
1308 |
+
<?php __("Something went wrong!", "profile-builder"); ?>
|
1309 |
+
<?php __("User not approved!", "profile-builder"); ?>
|
1310 |
+
<?php __("Do you wish to approve the registration?", "profile-builder"); ?>
|
1311 |
<?php __("The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. ", "profile-builder"); ?>
|
1312 |
<?php __("delete this user?", "profile-builder"); ?>
|
1313 |
<?php __("approve this user?", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -209,7 +209,7 @@ msgstr ""
|
|
209 |
msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: ../pb-add-on-buddypress/index.php:511, 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, 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, admin/manage-fields.php:
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
@@ -453,11 +453,11 @@ 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:239, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ../pb-add-on-field-visibility/index.php:239, admin/manage-fields.php:
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
@@ -565,7 +565,7 @@ msgstr ""
|
|
565 |
msgid "You must select a label to edit!"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:
|
569 |
msgid "Labels"
|
570 |
msgstr ""
|
571 |
|
@@ -683,7 +683,7 @@ msgstr ""
|
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:114, admin/general-settings.php:127, admin/general-settings.php:142, admin/general-settings.php:191, admin/general-settings.php:238, admin/general-settings.php:312, admin/private-website.php:67, admin/private-website.php:134, admin/private-website.php:147, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:279, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:89, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2413
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
@@ -887,7 +887,7 @@ msgstr ""
|
|
887 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../pb-add-on-social-connect/index.php:394, features/functions.php:
|
891 |
msgid "here"
|
892 |
msgstr ""
|
893 |
|
@@ -955,11 +955,11 @@ msgstr ""
|
|
955 |
msgid "Country"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:
|
959 |
msgid "First Name"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:
|
963 |
msgid "Last Name"
|
964 |
msgstr ""
|
965 |
|
@@ -1071,7 +1071,7 @@ msgstr ""
|
|
1071 |
msgid "Field Name"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:
|
1075 |
msgid "Required"
|
1076 |
msgstr ""
|
1077 |
|
@@ -1135,7 +1135,7 @@ msgstr ""
|
|
1135 |
msgid "Communication Preferences"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/manage-fields.php:
|
1139 |
msgid "E-mail"
|
1140 |
msgstr ""
|
1141 |
|
@@ -1239,7 +1239,7 @@ msgstr ""
|
|
1239 |
msgid "Edit this item"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:
|
1243 |
msgid "Cancel"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1639,15 +1639,15 @@ msgstr ""
|
|
1639 |
msgid "Very weak"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:298, features/functions.php:
|
1643 |
msgid "Weak"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:299, features/functions.php:
|
1647 |
msgid "Medium"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: admin/admin-functions.php:138, admin/general-settings.php:300, features/functions.php:
|
1651 |
msgid "Strong"
|
1652 |
msgstr ""
|
1653 |
|
@@ -2131,7 +2131,7 @@ msgstr ""
|
|
2131 |
msgid "Username and Email"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: admin/general-settings.php:267, admin/manage-fields.php:
|
2135 |
msgid "Username"
|
2136 |
msgstr ""
|
2137 |
|
@@ -2248,2018 +2248,2026 @@ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.
|
|
2248 |
msgstr ""
|
2249 |
|
2250 |
#: admin/manage-fields.php:185
|
2251 |
-
msgid "
|
2252 |
msgstr ""
|
2253 |
|
2254 |
#: admin/manage-fields.php:185
|
2255 |
-
msgid "
|
2256 |
msgstr ""
|
2257 |
|
2258 |
#: admin/manage-fields.php:186
|
2259 |
-
msgid "
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: admin/manage-fields.php:186
|
2263 |
-
msgid "
|
2264 |
msgstr ""
|
2265 |
|
2266 |
#: admin/manage-fields.php:187
|
2267 |
-
msgid "
|
2268 |
msgstr ""
|
2269 |
|
2270 |
#: admin/manage-fields.php:187
|
2271 |
-
msgid "
|
2272 |
msgstr ""
|
2273 |
|
2274 |
#: admin/manage-fields.php:188
|
2275 |
-
msgid "
|
2276 |
msgstr ""
|
2277 |
|
2278 |
#: admin/manage-fields.php:188
|
2279 |
-
msgid "
|
2280 |
msgstr ""
|
2281 |
|
2282 |
#: admin/manage-fields.php:189
|
2283 |
-
msgid "
|
2284 |
msgstr ""
|
2285 |
|
2286 |
#: admin/manage-fields.php:189
|
2287 |
-
msgid "Enter a
|
2288 |
msgstr ""
|
2289 |
|
2290 |
#: admin/manage-fields.php:190
|
2291 |
-
msgid "
|
|
|
|
|
|
|
|
|
2292 |
msgstr ""
|
2293 |
|
2294 |
#: admin/manage-fields.php:191
|
|
|
|
|
|
|
|
|
2295 |
msgid "reCAPTCHA Type"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: admin/manage-fields.php:
|
2299 |
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."
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: admin/manage-fields.php:
|
2303 |
msgid "Site Key"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: admin/manage-fields.php:
|
2307 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: admin/manage-fields.php:
|
2311 |
msgid "Secret Key"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: admin/manage-fields.php:
|
2315 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: admin/manage-fields.php:
|
2319 |
msgid "Display on PB forms"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: admin/manage-fields.php:
|
2323 |
msgid "PB Login"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: admin/manage-fields.php:
|
2327 |
msgid "PB Register"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: admin/manage-fields.php:
|
2331 |
msgid "PB Recover Password"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: admin/manage-fields.php:
|
2335 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: admin/manage-fields.php:
|
2339 |
msgid "Display on default WP forms"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: admin/manage-fields.php:
|
2343 |
msgid "Default WP Login"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: admin/manage-fields.php:
|
2347 |
msgid "Default WP Register"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: admin/manage-fields.php:
|
2351 |
msgid "Default WP Recover Password"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: admin/manage-fields.php:
|
2355 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: admin/manage-fields.php:
|
2359 |
msgid "User Roles"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: admin/manage-fields.php:
|
2363 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: admin/manage-fields.php:
|
2367 |
msgid "Display on Edit Profile"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: admin/manage-fields.php:
|
2371 |
msgid "Check if you want the select user role field to appear on Edit Profile forms"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: admin/manage-fields.php:
|
2375 |
msgid "User Roles Order"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: admin/manage-fields.php:
|
2379 |
msgid "Save the user role order from the user roles checkboxes"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: admin/manage-fields.php:
|
2383 |
msgid "Default Value"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: admin/manage-fields.php:
|
2387 |
msgid "Default value of the field"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: admin/manage-fields.php:
|
2391 |
msgid "Default Option"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: admin/manage-fields.php:
|
2395 |
msgid "Specify the option which should be selected by default"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: admin/manage-fields.php:
|
2399 |
msgid "Default Option(s)"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: admin/manage-fields.php:
|
2403 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: admin/manage-fields.php:
|
2407 |
msgid "Default option of the field"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: admin/manage-fields.php:
|
2411 |
msgid "Show Currency Symbol"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: admin/manage-fields.php:
|
2415 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: admin/manage-fields.php:
|
2419 |
msgid "Show Post Type"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: admin/manage-fields.php:
|
2423 |
msgid "Posts from what post type will be displayed in the select."
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: admin/manage-fields.php:
|
2427 |
msgid "Allowable Values"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: admin/manage-fields.php:
|
2431 |
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."
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: admin/manage-fields.php:
|
2435 |
msgid "Error Message"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: admin/manage-fields.php:
|
2439 |
msgid "Set a custom error message that will be displayed to the user."
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: admin/manage-fields.php:
|
2443 |
msgid "Time Format"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: admin/manage-fields.php:
|
2447 |
msgid "Specify the time format."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: admin/manage-fields.php:
|
2451 |
msgid "Google Maps API Key"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: admin/manage-fields.php:
|
2455 |
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."
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: admin/manage-fields.php:
|
2459 |
msgid "Default Latitude"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: admin/manage-fields.php:
|
2463 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: admin/manage-fields.php:
|
2467 |
msgid "Default Longitude"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: admin/manage-fields.php:
|
2471 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: admin/manage-fields.php:
|
2475 |
msgid "Default Zoom Level"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: admin/manage-fields.php:
|
2479 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: admin/manage-fields.php:
|
2483 |
msgid "Map Height"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: admin/manage-fields.php:
|
2487 |
msgid "The height of the map."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: admin/manage-fields.php:
|
2491 |
msgid "Default Content"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: admin/manage-fields.php:
|
2495 |
msgid "Default value of the textarea"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: admin/manage-fields.php:
|
2499 |
msgid "HTML Content"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: admin/manage-fields.php:
|
2503 |
msgid "Add your HTML (or text) content"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: admin/manage-fields.php:
|
2507 |
msgid "Phone Format"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: admin/manage-fields.php:
|
2511 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: admin/manage-fields.php:
|
2515 |
msgid "Eg. (###) ###-####"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: admin/manage-fields.php:
|
2519 |
msgid "Empty field won't check for correct phone number."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: admin/manage-fields.php:
|
2523 |
msgid "Heading Tag"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: admin/manage-fields.php:
|
2527 |
msgid "Change heading field size on front-end forms"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: admin/manage-fields.php:
|
2531 |
msgid "Min Number Value"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: admin/manage-fields.php:
|
2535 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: admin/manage-fields.php:
|
2539 |
msgid "Leave it empty for no min value"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: admin/manage-fields.php:
|
2543 |
msgid "Max Number Value"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: admin/manage-fields.php:
|
2547 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: admin/manage-fields.php:
|
2551 |
msgid "Leave it empty for no max value"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: admin/manage-fields.php:
|
2555 |
msgid "Number Step Value"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: admin/manage-fields.php:
|
2559 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: admin/manage-fields.php:
|
2563 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: admin/manage-fields.php:
|
2567 |
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)"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: admin/manage-fields.php:
|
2571 |
msgid "Leave it empty for no restriction"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: admin/manage-fields.php:
|
2575 |
msgid "Whether the field is required or not"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: admin/manage-fields.php:
|
2579 |
msgid "Overwrite Existing"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: admin/manage-fields.php:
|
2583 |
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"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: admin/manage-fields.php:
|
2587 |
msgid "POIs Load Type"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: admin/manage-fields.php:
|
2591 |
msgid "POIs of the listed users (as filtered & paginated)"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: admin/manage-fields.php:
|
2595 |
msgid "POIs of all the users for the filter* (no pagination)"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: admin/manage-fields.php:
|
2599 |
msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: admin/manage-fields.php:
|
2603 |
msgid "POI Bubble Info"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: admin/manage-fields.php:
|
2607 |
msgid "Select the attributes to be listed inside the POI bubble."
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: admin/manage-fields.php:
|
2611 |
msgid "Number of Users per Map Iteration"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: admin/manage-fields.php:
|
2615 |
msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: admin/manage-fields.php:
|
2619 |
msgid "Form Field Properties"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: admin/manage-fields.php:
|
2623 |
msgid "Registration & Edit Profile Forms"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: admin/manage-fields.php:
|
2627 |
msgid "Usernames cannot be changed."
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: admin/manage-fields.php:
|
2631 |
msgid "Nickname"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: admin/manage-fields.php:
|
2635 |
msgid "Display name publicly as"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: admin/manage-fields.php:
|
2639 |
msgid "Website"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: admin/manage-fields.php:
|
2643 |
msgid "AIM"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: admin/manage-fields.php:
|
2647 |
msgid "Yahoo IM"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: admin/manage-fields.php:
|
2651 |
msgid "Jabber / Google Talk"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: admin/manage-fields.php:
|
2655 |
msgid "Biographical Info"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: admin/manage-fields.php:
|
2659 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: admin/manage-fields.php:
|
2663 |
msgid "Password"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: admin/manage-fields.php:
|
2667 |
msgid "Type your password."
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: admin/manage-fields.php:
|
2671 |
msgid "Repeat Password"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: admin/manage-fields.php:
|
2675 |
msgid "Type your password again. "
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: admin/manage-fields.php:
|
2679 |
msgid "Blog Details"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: admin/manage-fields.php:
|
2683 |
msgid "Select a Country"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: admin/manage-fields.php:
|
2687 |
msgid "Afghanistan"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: admin/manage-fields.php:
|
2691 |
msgid "Aland Islands"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: admin/manage-fields.php:
|
2695 |
msgid "Albania"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: admin/manage-fields.php:
|
2699 |
msgid "Algeria"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: admin/manage-fields.php:
|
2703 |
msgid "American Samoa"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: admin/manage-fields.php:
|
2707 |
msgid "Andorra"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: admin/manage-fields.php:
|
2711 |
msgid "Angola"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: admin/manage-fields.php:
|
2715 |
msgid "Anguilla"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: admin/manage-fields.php:
|
2719 |
msgid "Antarctica"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: admin/manage-fields.php:
|
2723 |
msgid "Antigua and Barbuda"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: admin/manage-fields.php:
|
2727 |
msgid "Argentina"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: admin/manage-fields.php:
|
2731 |
msgid "Armenia"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: admin/manage-fields.php:
|
2735 |
msgid "Aruba"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: admin/manage-fields.php:
|
2739 |
msgid "Australia"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: admin/manage-fields.php:
|
2743 |
msgid "Austria"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: admin/manage-fields.php:
|
2747 |
msgid "Azerbaijan"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: admin/manage-fields.php:
|
2751 |
msgid "Bahamas"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: admin/manage-fields.php:
|
2755 |
msgid "Bahrain"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: admin/manage-fields.php:
|
2759 |
msgid "Bangladesh"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: admin/manage-fields.php:
|
2763 |
msgid "Barbados"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: admin/manage-fields.php:
|
2767 |
msgid "Belarus"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: admin/manage-fields.php:
|
2771 |
msgid "Belgium"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: admin/manage-fields.php:
|
2775 |
msgid "Belize"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: admin/manage-fields.php:
|
2779 |
msgid "Benin"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: admin/manage-fields.php:
|
2783 |
msgid "Bermuda"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: admin/manage-fields.php:
|
2787 |
msgid "Bhutan"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: admin/manage-fields.php:
|
2791 |
msgid "Bolivia"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: admin/manage-fields.php:
|
2795 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: admin/manage-fields.php:
|
2799 |
msgid "Bosnia and Herzegovina"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: admin/manage-fields.php:
|
2803 |
msgid "Botswana"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: admin/manage-fields.php:
|
2807 |
msgid "Bouvet Island"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: admin/manage-fields.php:
|
2811 |
msgid "Brazil"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: admin/manage-fields.php:
|
2815 |
msgid "British Indian Ocean Territory"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: admin/manage-fields.php:
|
2819 |
msgid "British Virgin Islands"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: admin/manage-fields.php:
|
2823 |
msgid "Brunei"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: admin/manage-fields.php:
|
2827 |
msgid "Bulgaria"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: admin/manage-fields.php:
|
2831 |
msgid "Burkina Faso"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: admin/manage-fields.php:
|
2835 |
msgid "Burundi"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: admin/manage-fields.php:
|
2839 |
msgid "Cambodia"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: admin/manage-fields.php:
|
2843 |
msgid "Cameroon"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: admin/manage-fields.php:
|
2847 |
msgid "Canada"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: admin/manage-fields.php:
|
2851 |
msgid "Cape Verde"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: admin/manage-fields.php:
|
2855 |
msgid "Cayman Islands"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: admin/manage-fields.php:
|
2859 |
msgid "Central African Republic"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: admin/manage-fields.php:
|
2863 |
msgid "Chad"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: admin/manage-fields.php:
|
2867 |
msgid "Chile"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: admin/manage-fields.php:
|
2871 |
msgid "China"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: admin/manage-fields.php:
|
2875 |
msgid "Christmas Island"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: admin/manage-fields.php:
|
2879 |
msgid "Cocos Islands"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: admin/manage-fields.php:
|
2883 |
msgid "Colombia"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: admin/manage-fields.php:
|
2887 |
msgid "Comoros"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: admin/manage-fields.php:
|
2891 |
msgid "Cook Islands"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: admin/manage-fields.php:
|
2895 |
msgid "Costa Rica"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: admin/manage-fields.php:
|
2899 |
msgid "Croatia"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: admin/manage-fields.php:
|
2903 |
msgid "Cuba"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: admin/manage-fields.php:
|
2907 |
msgid "Curacao"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: admin/manage-fields.php:
|
2911 |
msgid "Cyprus"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: admin/manage-fields.php:
|
2915 |
msgid "Czech Republic"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: admin/manage-fields.php:
|
2919 |
msgid "Democratic Republic of the Congo"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: admin/manage-fields.php:
|
2923 |
msgid "Denmark"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: admin/manage-fields.php:
|
2927 |
msgid "Djibouti"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: admin/manage-fields.php:
|
2931 |
msgid "Dominica"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: admin/manage-fields.php:
|
2935 |
msgid "Dominican Republic"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: admin/manage-fields.php:
|
2939 |
msgid "East Timor"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: admin/manage-fields.php:
|
2943 |
msgid "Ecuador"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: admin/manage-fields.php:
|
2947 |
msgid "Egypt"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: admin/manage-fields.php:
|
2951 |
msgid "El Salvador"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: admin/manage-fields.php:
|
2955 |
msgid "Equatorial Guinea"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: admin/manage-fields.php:
|
2959 |
msgid "Eritrea"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: admin/manage-fields.php:
|
2963 |
msgid "Estonia"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: admin/manage-fields.php:
|
2967 |
msgid "Ethiopia"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: admin/manage-fields.php:
|
2971 |
msgid "Falkland Islands"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: admin/manage-fields.php:
|
2975 |
msgid "Faroe Islands"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: admin/manage-fields.php:
|
2979 |
msgid "Fiji"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: admin/manage-fields.php:
|
2983 |
msgid "Finland"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: admin/manage-fields.php:
|
2987 |
msgid "France"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: admin/manage-fields.php:
|
2991 |
msgid "French Guiana"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: admin/manage-fields.php:
|
2995 |
msgid "French Polynesia"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: admin/manage-fields.php:
|
2999 |
msgid "French Southern Territories"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: admin/manage-fields.php:
|
3003 |
msgid "Gabon"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: admin/manage-fields.php:
|
3007 |
msgid "Gambia"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: admin/manage-fields.php:
|
3011 |
msgid "Georgia"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: admin/manage-fields.php:
|
3015 |
msgid "Germany"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: admin/manage-fields.php:
|
3019 |
msgid "Ghana"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: admin/manage-fields.php:
|
3023 |
msgid "Gibraltar"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: admin/manage-fields.php:
|
3027 |
msgid "Greece"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: admin/manage-fields.php:
|
3031 |
msgid "Greenland"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: admin/manage-fields.php:
|
3035 |
msgid "Grenada"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: admin/manage-fields.php:
|
3039 |
msgid "Guadeloupe"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: admin/manage-fields.php:
|
3043 |
msgid "Guam"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: admin/manage-fields.php:
|
3047 |
msgid "Guatemala"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: admin/manage-fields.php:
|
3051 |
msgid "Guernsey"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: admin/manage-fields.php:
|
3055 |
msgid "Guinea"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: admin/manage-fields.php:
|
3059 |
msgid "Guinea-Bissau"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: admin/manage-fields.php:
|
3063 |
msgid "Guyana"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: admin/manage-fields.php:
|
3067 |
msgid "Haiti"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: admin/manage-fields.php:
|
3071 |
msgid "Heard Island and McDonald Islands"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: admin/manage-fields.php:
|
3075 |
msgid "Honduras"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: admin/manage-fields.php:
|
3079 |
msgid "Hong Kong"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: admin/manage-fields.php:
|
3083 |
msgid "Hungary"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: admin/manage-fields.php:
|
3087 |
msgid "Iceland"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: admin/manage-fields.php:
|
3091 |
msgid "India"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: admin/manage-fields.php:
|
3095 |
msgid "Indonesia"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: admin/manage-fields.php:
|
3099 |
msgid "Iran"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: admin/manage-fields.php:
|
3103 |
msgid "Iraq"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: admin/manage-fields.php:
|
3107 |
msgid "Ireland"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: admin/manage-fields.php:
|
3111 |
msgid "Isle of Man"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: admin/manage-fields.php:
|
3115 |
msgid "Israel"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: admin/manage-fields.php:
|
3119 |
msgid "Italy"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: admin/manage-fields.php:
|
3123 |
msgid "Ivory Coast"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: admin/manage-fields.php:
|
3127 |
msgid "Jamaica"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: admin/manage-fields.php:
|
3131 |
msgid "Japan"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: admin/manage-fields.php:
|
3135 |
msgid "Jersey"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: admin/manage-fields.php:
|
3139 |
msgid "Jordan"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: admin/manage-fields.php:
|
3143 |
msgid "Kazakhstan"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: admin/manage-fields.php:
|
3147 |
msgid "Kenya"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: admin/manage-fields.php:
|
3151 |
msgid "Kiribati"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: admin/manage-fields.php:
|
3155 |
msgid "Kosovo"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: admin/manage-fields.php:
|
3159 |
msgid "Kuwait"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: admin/manage-fields.php:
|
3163 |
msgid "Kyrgyzstan"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: admin/manage-fields.php:
|
3167 |
msgid "Laos"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: admin/manage-fields.php:
|
3171 |
msgid "Latvia"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: admin/manage-fields.php:
|
3175 |
msgid "Lebanon"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: admin/manage-fields.php:
|
3179 |
msgid "Lesotho"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: admin/manage-fields.php:
|
3183 |
msgid "Liberia"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: admin/manage-fields.php:
|
3187 |
msgid "Libya"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: admin/manage-fields.php:
|
3191 |
msgid "Liechtenstein"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: admin/manage-fields.php:
|
3195 |
msgid "Lithuania"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: admin/manage-fields.php:
|
3199 |
msgid "Luxembourg"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: admin/manage-fields.php:
|
3203 |
msgid "Macao"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: admin/manage-fields.php:
|
3207 |
msgid "Macedonia"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: admin/manage-fields.php:
|
3211 |
msgid "Madagascar"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: admin/manage-fields.php:
|
3215 |
msgid "Malawi"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: admin/manage-fields.php:
|
3219 |
msgid "Malaysia"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: admin/manage-fields.php:
|
3223 |
msgid "Maldives"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: admin/manage-fields.php:
|
3227 |
msgid "Mali"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: admin/manage-fields.php:
|
3231 |
msgid "Malta"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: admin/manage-fields.php:
|
3235 |
msgid "Marshall Islands"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: admin/manage-fields.php:
|
3239 |
msgid "Martinique"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: admin/manage-fields.php:
|
3243 |
msgid "Mauritania"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: admin/manage-fields.php:
|
3247 |
msgid "Mauritius"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: admin/manage-fields.php:
|
3251 |
msgid "Mayotte"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: admin/manage-fields.php:
|
3255 |
msgid "Mexico"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: admin/manage-fields.php:
|
3259 |
msgid "Micronesia"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: admin/manage-fields.php:
|
3263 |
msgid "Moldova"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: admin/manage-fields.php:
|
3267 |
msgid "Monaco"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: admin/manage-fields.php:
|
3271 |
msgid "Mongolia"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: admin/manage-fields.php:
|
3275 |
msgid "Montenegro"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: admin/manage-fields.php:
|
3279 |
msgid "Montserrat"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: admin/manage-fields.php:
|
3283 |
msgid "Morocco"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: admin/manage-fields.php:
|
3287 |
msgid "Mozambique"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: admin/manage-fields.php:
|
3291 |
msgid "Myanmar"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: admin/manage-fields.php:
|
3295 |
msgid "Namibia"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: admin/manage-fields.php:
|
3299 |
msgid "Nauru"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: admin/manage-fields.php:
|
3303 |
msgid "Nepal"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: admin/manage-fields.php:
|
3307 |
msgid "Netherlands"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: admin/manage-fields.php:
|
3311 |
msgid "New Caledonia"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: admin/manage-fields.php:
|
3315 |
msgid "New Zealand"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: admin/manage-fields.php:
|
3319 |
msgid "Nicaragua"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: admin/manage-fields.php:
|
3323 |
msgid "Niger"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: admin/manage-fields.php:
|
3327 |
msgid "Nigeria"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: admin/manage-fields.php:
|
3331 |
msgid "Niue"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: admin/manage-fields.php:
|
3335 |
msgid "Norfolk Island"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: admin/manage-fields.php:
|
3339 |
msgid "North Korea"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: admin/manage-fields.php:
|
3343 |
msgid "Northern Mariana Islands"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: admin/manage-fields.php:
|
3347 |
msgid "Norway"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: admin/manage-fields.php:
|
3351 |
msgid "Oman"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: admin/manage-fields.php:
|
3355 |
msgid "Pakistan"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: admin/manage-fields.php:
|
3359 |
msgid "Palau"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: admin/manage-fields.php:
|
3363 |
msgid "Palestinian Territory"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: admin/manage-fields.php:
|
3367 |
msgid "Panama"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: admin/manage-fields.php:
|
3371 |
msgid "Papua New Guinea"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: admin/manage-fields.php:
|
3375 |
msgid "Paraguay"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: admin/manage-fields.php:
|
3379 |
msgid "Peru"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: admin/manage-fields.php:
|
3383 |
msgid "Philippines"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: admin/manage-fields.php:
|
3387 |
msgid "Pitcairn"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: admin/manage-fields.php:
|
3391 |
msgid "Poland"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: admin/manage-fields.php:
|
3395 |
msgid "Portugal"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: admin/manage-fields.php:
|
3399 |
msgid "Puerto Rico"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: admin/manage-fields.php:
|
3403 |
msgid "Qatar"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: admin/manage-fields.php:
|
3407 |
msgid "Republic of the Congo"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: admin/manage-fields.php:
|
3411 |
msgid "Reunion"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: admin/manage-fields.php:
|
3415 |
msgid "Romania"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: admin/manage-fields.php:
|
3419 |
msgid "Russia"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: admin/manage-fields.php:
|
3423 |
msgid "Rwanda"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: admin/manage-fields.php:
|
3427 |
msgid "Saint Barthelemy"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: admin/manage-fields.php:
|
3431 |
msgid "Saint Helena"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: admin/manage-fields.php:
|
3435 |
msgid "Saint Kitts and Nevis"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: admin/manage-fields.php:
|
3439 |
msgid "Saint Lucia"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: admin/manage-fields.php:
|
3443 |
msgid "Saint Martin"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: admin/manage-fields.php:
|
3447 |
msgid "Saint Pierre and Miquelon"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: admin/manage-fields.php:
|
3451 |
msgid "Saint Vincent and the Grenadines"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: admin/manage-fields.php:
|
3455 |
msgid "Samoa"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: admin/manage-fields.php:
|
3459 |
msgid "San Marino"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: admin/manage-fields.php:
|
3463 |
msgid "Sao Tome and Principe"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: admin/manage-fields.php:
|
3467 |
msgid "Saudi Arabia"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: admin/manage-fields.php:
|
3471 |
msgid "Senegal"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: admin/manage-fields.php:
|
3475 |
msgid "Serbia"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: admin/manage-fields.php:
|
3479 |
msgid "Seychelles"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: admin/manage-fields.php:
|
3483 |
msgid "Sierra Leone"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: admin/manage-fields.php:
|
3487 |
msgid "Singapore"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: admin/manage-fields.php:
|
3491 |
msgid "Sint Maarten"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: admin/manage-fields.php:
|
3495 |
msgid "Slovakia"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: admin/manage-fields.php:
|
3499 |
msgid "Slovenia"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: admin/manage-fields.php:
|
3503 |
msgid "Solomon Islands"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: admin/manage-fields.php:
|
3507 |
msgid "Somalia"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: admin/manage-fields.php:
|
3511 |
msgid "South Africa"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: admin/manage-fields.php:
|
3515 |
msgid "South Georgia and the South Sandwich Islands"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: admin/manage-fields.php:
|
3519 |
msgid "South Korea"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: admin/manage-fields.php:
|
3523 |
msgid "South Sudan"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: admin/manage-fields.php:
|
3527 |
msgid "Spain"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: admin/manage-fields.php:
|
3531 |
msgid "Sri Lanka"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: admin/manage-fields.php:
|
3535 |
msgid "Sudan"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: admin/manage-fields.php:
|
3539 |
msgid "Suriname"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: admin/manage-fields.php:
|
3543 |
msgid "Svalbard and Jan Mayen"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: admin/manage-fields.php:
|
3547 |
msgid "Swaziland"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: admin/manage-fields.php:
|
3551 |
msgid "Sweden"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: admin/manage-fields.php:
|
3555 |
msgid "Switzerland"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: admin/manage-fields.php:
|
3559 |
msgid "Syria"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: admin/manage-fields.php:
|
3563 |
msgid "Taiwan"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: admin/manage-fields.php:
|
3567 |
msgid "Tajikistan"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: admin/manage-fields.php:
|
3571 |
msgid "Tanzania"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: admin/manage-fields.php:
|
3575 |
msgid "Thailand"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: admin/manage-fields.php:
|
3579 |
msgid "Togo"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: admin/manage-fields.php:
|
3583 |
msgid "Tokelau"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: admin/manage-fields.php:
|
3587 |
msgid "Tonga"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: admin/manage-fields.php:
|
3591 |
msgid "Trinidad and Tobago"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: admin/manage-fields.php:
|
3595 |
msgid "Tunisia"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: admin/manage-fields.php:
|
3599 |
msgid "Turkey"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: admin/manage-fields.php:
|
3603 |
msgid "Turkmenistan"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: admin/manage-fields.php:
|
3607 |
msgid "Turks and Caicos Islands"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: admin/manage-fields.php:
|
3611 |
msgid "Tuvalu"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: admin/manage-fields.php:
|
3615 |
msgid "U.S. Virgin Islands"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: admin/manage-fields.php:
|
3619 |
msgid "Uganda"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: admin/manage-fields.php:
|
3623 |
msgid "Ukraine"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: admin/manage-fields.php:
|
3627 |
msgid "United Arab Emirates"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: admin/manage-fields.php:
|
3631 |
msgid "United Kingdom"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: admin/manage-fields.php:
|
3635 |
msgid "United States"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: admin/manage-fields.php:
|
3639 |
msgid "United States Minor Outlying Islands"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: admin/manage-fields.php:
|
3643 |
msgid "Uruguay"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: admin/manage-fields.php:
|
3647 |
msgid "Uzbekistan"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: admin/manage-fields.php:
|
3651 |
msgid "Vanuatu"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: admin/manage-fields.php:
|
3655 |
msgid "Vatican"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: admin/manage-fields.php:
|
3659 |
msgid "Venezuela"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: admin/manage-fields.php:
|
3663 |
msgid "Vietnam"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: admin/manage-fields.php:
|
3667 |
msgid "Wallis and Futuna"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: admin/manage-fields.php:
|
3671 |
msgid "Western Sahara"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: admin/manage-fields.php:
|
3675 |
msgid "Yemen"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: admin/manage-fields.php:
|
3679 |
msgid "Zambia"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: admin/manage-fields.php:
|
3683 |
msgid "Zimbabwe"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: admin/manage-fields.php:
|
3687 |
msgid "Albania Lek"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: admin/manage-fields.php:
|
3691 |
msgid "Afghanistan Afghani"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: admin/manage-fields.php:
|
3695 |
msgid "Argentina Peso"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: admin/manage-fields.php:
|
3699 |
msgid "Australia Dollar"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: admin/manage-fields.php:
|
3703 |
msgid "Azerbaijan New Manat"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: admin/manage-fields.php:
|
3707 |
msgid "Bahamas Dollar"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: admin/manage-fields.php:
|
3711 |
msgid "Barbados Dollar"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: admin/manage-fields.php:
|
3715 |
msgid "Bangladeshi taka"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: admin/manage-fields.php:
|
3719 |
msgid "Belarus Ruble"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: admin/manage-fields.php:
|
3723 |
msgid "Belize Dollar"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: admin/manage-fields.php:
|
3727 |
msgid "Bermuda Dollar"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: admin/manage-fields.php:
|
3731 |
msgid "Bolivia Boliviano"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: admin/manage-fields.php:
|
3735 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: admin/manage-fields.php:
|
3739 |
msgid "Botswana Pula"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: admin/manage-fields.php:
|
3743 |
msgid "Bulgaria Lev"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: admin/manage-fields.php:
|
3747 |
msgid "Brazil Real"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: admin/manage-fields.php:
|
3751 |
msgid "Brunei Darussalam Dollar"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: admin/manage-fields.php:
|
3755 |
msgid "Cambodia Riel"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: admin/manage-fields.php:
|
3759 |
msgid "Canada Dollar"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: admin/manage-fields.php:
|
3763 |
msgid "Cayman Islands Dollar"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: admin/manage-fields.php:
|
3767 |
msgid "Chile Peso"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: admin/manage-fields.php:
|
3771 |
msgid "China Yuan Renminbi"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: admin/manage-fields.php:
|
3775 |
msgid "Colombia Peso"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: admin/manage-fields.php:
|
3779 |
msgid "Costa Rica Colon"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: admin/manage-fields.php:
|
3783 |
msgid "Croatia Kuna"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: admin/manage-fields.php:
|
3787 |
msgid "Cuba Peso"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: admin/manage-fields.php:
|
3791 |
msgid "Czech Republic Koruna"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: admin/manage-fields.php:
|
3795 |
msgid "Denmark Krone"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: admin/manage-fields.php:
|
3799 |
msgid "Dominican Republic Peso"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: admin/manage-fields.php:
|
3803 |
msgid "East Caribbean Dollar"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: admin/manage-fields.php:
|
3807 |
msgid "Egypt Pound"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: admin/manage-fields.php:
|
3811 |
msgid "El Salvador Colon"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: admin/manage-fields.php:
|
3815 |
msgid "Estonia Kroon"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: admin/manage-fields.php:
|
3819 |
msgid "Euro"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: admin/manage-fields.php:
|
3823 |
msgid "Falkland Islands (Malvinas) Pound"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: admin/manage-fields.php:
|
3827 |
msgid "Fiji Dollar"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: admin/manage-fields.php:
|
3831 |
msgid "Ghana Cedis"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: admin/manage-fields.php:
|
3835 |
msgid "Gibraltar Pound"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: admin/manage-fields.php:
|
3839 |
msgid "Guatemala Quetzal"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: admin/manage-fields.php:
|
3843 |
msgid "Guernsey Pound"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: admin/manage-fields.php:
|
3847 |
msgid "Guyana Dollar"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: admin/manage-fields.php:
|
3851 |
msgid "Honduras Lempira"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: admin/manage-fields.php:
|
3855 |
msgid "Hong Kong Dollar"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: admin/manage-fields.php:
|
3859 |
msgid "Hungary Forint"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: admin/manage-fields.php:
|
3863 |
msgid "Iceland Krona"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: admin/manage-fields.php:
|
3867 |
msgid "India Rupee"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: admin/manage-fields.php:
|
3871 |
msgid "Indonesia Rupiah"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: admin/manage-fields.php:
|
3875 |
msgid "Iran Rial"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: admin/manage-fields.php:
|
3879 |
msgid "Isle of Man Pound"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: admin/manage-fields.php:
|
3883 |
msgid "Israel Shekel"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: admin/manage-fields.php:
|
3887 |
msgid "Jamaica Dollar"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: admin/manage-fields.php:
|
3891 |
msgid "Japan Yen"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: admin/manage-fields.php:
|
3895 |
msgid "Jersey Pound"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: admin/manage-fields.php:
|
3899 |
msgid "Kazakhstan Tenge"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: admin/manage-fields.php:
|
3903 |
msgid "Korea (North) Won"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: admin/manage-fields.php:
|
3907 |
msgid "Korea (South) Won"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: admin/manage-fields.php:
|
3911 |
msgid "Kyrgyzstan Som"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: admin/manage-fields.php:
|
3915 |
msgid "Laos Kip"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: admin/manage-fields.php:
|
3919 |
msgid "Latvia Lat"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: admin/manage-fields.php:
|
3923 |
msgid "Lebanon Pound"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: admin/manage-fields.php:
|
3927 |
msgid "Liberia Dollar"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: admin/manage-fields.php:
|
3931 |
msgid "Lithuania Litas"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: admin/manage-fields.php:
|
3935 |
msgid "Macedonia Denar"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: admin/manage-fields.php:
|
3939 |
msgid "Malaysia Ringgit"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: admin/manage-fields.php:
|
3943 |
msgid "Mauritius Rupee"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: admin/manage-fields.php:
|
3947 |
msgid "Mexico Peso"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: admin/manage-fields.php:
|
3951 |
msgid "Mongolia Tughrik"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: admin/manage-fields.php:
|
3955 |
msgid "Mozambique Metical"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: admin/manage-fields.php:
|
3959 |
msgid "Namibia Dollar"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: admin/manage-fields.php:
|
3963 |
msgid "Nepal Rupee"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: admin/manage-fields.php:
|
3967 |
msgid "Netherlands Antilles Guilder"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: admin/manage-fields.php:
|
3971 |
msgid "New Zealand Dollar"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: admin/manage-fields.php:
|
3975 |
msgid "Nicaragua Cordoba"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: admin/manage-fields.php:
|
3979 |
msgid "Nigeria Naira"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: admin/manage-fields.php:
|
3983 |
msgid "Norway Krone"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: admin/manage-fields.php:
|
3987 |
msgid "Oman Rial"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: admin/manage-fields.php:
|
3991 |
msgid "Pakistan Rupee"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: admin/manage-fields.php:
|
3995 |
msgid "Panama Balboa"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: admin/manage-fields.php:
|
3999 |
msgid "Paraguay Guarani"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: admin/manage-fields.php:
|
4003 |
msgid "Peru Nuevo Sol"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: admin/manage-fields.php:
|
4007 |
msgid "Philippines Peso"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: admin/manage-fields.php:
|
4011 |
msgid "Poland Zloty"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: admin/manage-fields.php:
|
4015 |
msgid "Qatar Riyal"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: admin/manage-fields.php:
|
4019 |
msgid "Romania New Leu"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: admin/manage-fields.php:
|
4023 |
msgid "Russia Ruble"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: admin/manage-fields.php:
|
4027 |
msgid "Saint Helena Pound"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: admin/manage-fields.php:
|
4031 |
msgid "Saudi Arabia Riyal"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: admin/manage-fields.php:
|
4035 |
msgid "Serbia Dinar"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: admin/manage-fields.php:
|
4039 |
msgid "Seychelles Rupee"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: admin/manage-fields.php:
|
4043 |
msgid "Singapore Dollar"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: admin/manage-fields.php:
|
4047 |
msgid "Solomon Islands Dollar"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: admin/manage-fields.php:
|
4051 |
msgid "Somalia Shilling"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: admin/manage-fields.php:
|
4055 |
msgid "South Africa Rand"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: admin/manage-fields.php:
|
4059 |
msgid "Sri Lanka Rupee"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: admin/manage-fields.php:
|
4063 |
msgid "Sweden Krona"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: admin/manage-fields.php:
|
4067 |
msgid "Switzerland Franc"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: admin/manage-fields.php:
|
4071 |
msgid "Suriname Dollar"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: admin/manage-fields.php:
|
4075 |
msgid "Syria Pound"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: admin/manage-fields.php:
|
4079 |
msgid "Taiwan New Dollar"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: admin/manage-fields.php:
|
4083 |
msgid "Thailand Baht"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: admin/manage-fields.php:
|
4087 |
msgid "Trinidad and Tobago Dollar"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: admin/manage-fields.php:
|
4091 |
msgid "Turkey Lira"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: admin/manage-fields.php:
|
4095 |
msgid "Tuvalu Dollar"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: admin/manage-fields.php:
|
4099 |
msgid "Ukraine Hryvna"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: admin/manage-fields.php:
|
4103 |
msgid "United Kingdom Pound"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: admin/manage-fields.php:
|
4107 |
msgid "Uganda Shilling"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: admin/manage-fields.php:
|
4111 |
msgid "US Dollar"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: admin/manage-fields.php:
|
4115 |
msgid "Uruguay Peso"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: admin/manage-fields.php:
|
4119 |
msgid "Uzbekistan Som"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: admin/manage-fields.php:
|
4123 |
msgid "Venezuela Bolivar"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: admin/manage-fields.php:
|
4127 |
msgid "Viet Nam Dong"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: admin/manage-fields.php:
|
4131 |
msgid "Yemen Rial"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: admin/manage-fields.php:
|
4135 |
msgid "Zimbabwe Dollar"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: admin/manage-fields.php:
|
4139 |
msgid ""
|
4140 |
"That field is already added in this form\n"
|
4141 |
""
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: admin/manage-fields.php:
|
4145 |
msgid ""
|
4146 |
"You must select a field\n"
|
4147 |
""
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: admin/manage-fields.php:
|
4151 |
msgid ""
|
4152 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4153 |
""
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#: admin/manage-fields.php:
|
4157 |
msgid ""
|
4158 |
"The entered avatar size is not numerical\n"
|
4159 |
""
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: admin/manage-fields.php:
|
4163 |
msgid ""
|
4164 |
"The entered avatar size is not between 20 and 200\n"
|
4165 |
""
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: admin/manage-fields.php:
|
4169 |
msgid ""
|
4170 |
"You must enter a value for the row number\n"
|
4171 |
""
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: admin/manage-fields.php:
|
4175 |
msgid ""
|
4176 |
"The entered row number is not numerical\n"
|
4177 |
""
|
4178 |
msgstr ""
|
4179 |
|
4180 |
-
#: admin/manage-fields.php:
|
4181 |
msgid ""
|
4182 |
"You must enter the site key\n"
|
4183 |
""
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: admin/manage-fields.php:
|
4187 |
msgid ""
|
4188 |
"You must enter the secret key\n"
|
4189 |
""
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: admin/manage-fields.php:
|
4193 |
msgid ""
|
4194 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4195 |
""
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: admin/manage-fields.php:
|
4199 |
msgid ""
|
4200 |
"You must enter a value for the date-format\n"
|
4201 |
""
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: admin/manage-fields.php:
|
4205 |
msgid ""
|
4206 |
"The meta-name cannot be empty\n"
|
4207 |
""
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: admin/manage-fields.php:
|
4211 |
msgid ""
|
4212 |
"That meta-name is already in use\n"
|
4213 |
""
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: admin/manage-fields.php:
|
4217 |
msgid ""
|
4218 |
"That meta-name can't be used, please choose another\n"
|
4219 |
""
|
4220 |
msgstr ""
|
4221 |
|
4222 |
-
#: admin/manage-fields.php:
|
4223 |
msgid ""
|
4224 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4225 |
""
|
4226 |
msgstr ""
|
4227 |
|
4228 |
-
#: admin/manage-fields.php:
|
4229 |
msgid ""
|
4230 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4231 |
""
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: admin/manage-fields.php:
|
4235 |
msgid ""
|
4236 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4237 |
""
|
4238 |
msgstr ""
|
4239 |
|
4240 |
-
#: admin/manage-fields.php:
|
4241 |
msgid ""
|
4242 |
"Please select at least one user role\n"
|
4243 |
""
|
4244 |
msgstr ""
|
4245 |
|
4246 |
-
#: admin/manage-fields.php:
|
4247 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: admin/manage-fields.php:
|
4251 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: admin/manage-fields.php:
|
4255 |
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."
|
4256 |
msgstr ""
|
4257 |
|
4258 |
-
#: admin/manage-fields.php:
|
4259 |
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."
|
4260 |
msgstr ""
|
4261 |
|
4262 |
-
#: admin/manage-fields.php:
|
4263 |
msgid "Search Location"
|
4264 |
msgstr ""
|
4265 |
|
@@ -4391,7 +4399,7 @@ msgstr ""
|
|
4391 |
msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: admin/private-website.php:159, features/functions.php:
|
4395 |
msgid "Save Changes"
|
4396 |
msgstr ""
|
4397 |
|
@@ -4479,55 +4487,55 @@ msgstr ""
|
|
4479 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: features/functions.php:
|
4483 |
msgid "Strength indicator"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: features/functions.php:
|
4487 |
msgid "Very Weak"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: features/functions.php:
|
4491 |
msgid "Minimum length of %d characters."
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: features/functions.php:
|
4495 |
msgid "The password must have a minimum strength of %s"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: features/functions.php:
|
4499 |
msgid "This field is required"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
-
#: features/functions.php:
|
4503 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: features/functions.php:
|
4507 |
msgid "Incorrect phone number"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: features/functions.php:
|
4511 |
msgid "Content"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
-
#: features/functions.php:
|
4515 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: features/functions.php:
|
4519 |
msgid "<br><br>You can visit your site at "
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: features/functions.php:
|
4523 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
-
#: features/functions.php:
|
4527 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
#: features/functions.php:
|
4531 |
msgid "You are not currently logged in."
|
4532 |
msgstr ""
|
4533 |
|
@@ -4835,6 +4843,14 @@ msgstr ""
|
|
4835 |
msgid "By checking this option, you will allow users that have the 'delete_users' capability to see the list of Unconfirmed Email Addresses."
|
4836 |
msgstr ""
|
4837 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4838 |
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:14
|
4839 |
msgid "Automatically generate password for users"
|
4840 |
msgstr ""
|
@@ -5215,7 +5231,7 @@ msgstr ""
|
|
5215 |
msgid "User successfully unapproved!"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: features/admin-approval/admin-approval.php:68, features/admin-approval/admin-approval.php:
|
5219 |
msgid "User successfully approved!"
|
5220 |
msgstr ""
|
5221 |
|
@@ -5263,7 +5279,19 @@ msgstr ""
|
|
5263 |
msgid "Your account has been successfully created!"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: features/admin-approval/admin-approval.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5267 |
msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
|
5268 |
msgstr ""
|
5269 |
|
@@ -5343,7 +5371,7 @@ msgstr ""
|
|
5343 |
msgid "Conditional Rules"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#: features/conditional-fields/conditional-fields.php:
|
5347 |
msgid "This field has conditional logic enabled."
|
5348 |
msgstr ""
|
5349 |
|
@@ -6977,19 +7005,19 @@ msgstr ""
|
|
6977 |
msgid "Remove"
|
6978 |
msgstr ""
|
6979 |
|
6980 |
-
#: front-end/extra-fields/upload/upload.php:
|
6981 |
msgid "Select File"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: front-end/extra-fields/upload/upload.php:
|
6985 |
msgid "Upload "
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: front-end/extra-fields/upload/upload_helper_functions.php:61
|
6989 |
msgid "Files must be smaller than "
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#: front-end/extra-fields/upload/upload_helper_functions.php:87, front-end/extra-fields/upload/upload_helper_functions.php:96
|
6993 |
msgid "Sorry, you cannot upload this file type for this field."
|
6994 |
msgstr ""
|
6995 |
|
209 |
msgid "Profile Builder Avatar field is disabled to allow use of BuddyPress Avatar."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: ../pb-add-on-buddypress/index.php:511, admin/manage-fields.php:319
|
213 |
msgid "Name"
|
214 |
msgstr ""
|
215 |
|
233 |
msgid "Display name:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../pb-add-on-buddypress/index.php:534, admin/manage-fields.php:325
|
237 |
msgid "Contact Info"
|
238 |
msgstr ""
|
239 |
|
241 |
msgid "Website:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: ../pb-add-on-buddypress/index.php:541, admin/manage-fields.php:336
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
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:239, ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:1322, features/functions.php:963, features/functions.php:970, features/admin-approval/class-admin-approval.php:108, features/roles-editor/roles-editor.php:866, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, modules/multiple-forms/multiple-forms.php:406
|
457 |
msgid "Edit"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ../pb-add-on-field-visibility/index.php:239, admin/manage-fields.php:1322, features/functions.php:956, features/functions.php:970, features/admin-approval/class-admin-approval.php:113, features/email-confirmation/class-email-confirmation.php:121, features/email-confirmation/class-email-confirmation.php:218, features/roles-editor/roles-editor.php:180, features/roles-editor/roles-editor.php:904, features/roles-editor/roles-editor.php:893, features/roles-editor/roles-editor.php:884, modules/custom-redirects/custom_redirects_admin.php:183, modules/custom-redirects/custom_redirects_admin.php:197, modules/custom-redirects/custom_redirects_admin.php:211, modules/custom-redirects/custom_redirects_admin.php:225, front-end/default-fields/gdpr-delete/gdpr-delete.php:20
|
461 |
msgid "Delete"
|
462 |
msgstr ""
|
463 |
|
565 |
msgid "You must select a label to edit!"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../pb-add-on-labels-edit/pble.php:381, admin/manage-fields.php:191
|
569 |
msgid "Labels"
|
570 |
msgstr ""
|
571 |
|
683 |
msgid "Replace labels with placeholders:"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:171, ../pb-add-on-social-connect/index.php:326, admin/general-settings.php:114, admin/general-settings.php:127, admin/general-settings.php:142, admin/general-settings.php:191, admin/general-settings.php:238, admin/general-settings.php:312, admin/manage-fields.php:185, admin/private-website.php:67, admin/private-website.php:134, admin/private-website.php:147, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:18, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:34, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:50, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:18, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:66, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:181, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:197, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:217, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:240, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:261, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:279, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:132, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:149, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:164, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:184, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:201, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:239, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:260, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:280, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:302, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:16, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:32, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:48, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:64, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:53, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:75, features/content-restriction/content-restriction.php:89, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230, modules/user-listing/userlisting.php:2413
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
887 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: ../pb-add-on-social-connect/index.php:394, features/functions.php:1250
|
891 |
msgid "here"
|
892 |
msgstr ""
|
893 |
|
955 |
msgid "Country"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:321, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:127
|
959 |
msgid "First Name"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:322, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:133
|
963 |
msgid "Last Name"
|
964 |
msgstr ""
|
965 |
|
1071 |
msgid "Field Name"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:243
|
1075 |
msgid "Required"
|
1076 |
msgstr ""
|
1077 |
|
1135 |
msgid "Communication Preferences"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../pb-add-on-gdpr-communication-preferences/admin/manage-fields.php:29, ../pb-add-on-gdpr-communication-preferences/front-end/gdpr-communication-preferences.php:9, admin/manage-fields.php:326, front-end/recover.php:119, ../pb-add-on-customization-toolbox/includes/shortcodes/resend-activation.php:9, features/admin-approval/class-admin-approval.php:169, features/email-confirmation/class-email-confirmation.php:169, modules/user-listing/userlisting.php:118
|
1139 |
msgid "E-mail"
|
1140 |
msgstr ""
|
1141 |
|
1239 |
msgid "Edit this item"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:949, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1243 |
msgid "Cancel"
|
1244 |
msgstr ""
|
1245 |
|
1639 |
msgid "Very weak"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:298, features/functions.php:759, features/functions.php:783
|
1643 |
msgid "Weak"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:299, features/functions.php:759, features/functions.php:783
|
1647 |
msgid "Medium"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:300, features/functions.php:759, features/functions.php:783
|
1651 |
msgid "Strong"
|
1652 |
msgstr ""
|
1653 |
|
2131 |
msgid "Username and Email"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: admin/general-settings.php:267, admin/manage-fields.php:320, front-end/login.php:255, front-end/login.php:269, front-end/login.php:409, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:121, features/admin-approval/class-admin-approval.php:166, features/email-confirmation/class-email-confirmation.php:168, modules/custom-redirects/custom_redirects_admin.php:60, modules/email-customizer/email-customizer.php:28, modules/user-listing/userlisting.php:112, modules/user-listing/userlisting.php:312, modules/user-listing/userlisting.php:807, modules/user-listing/userlisting.php:2367
|
2135 |
msgid "Username"
|
2136 |
msgstr ""
|
2137 |
|
2248 |
msgstr ""
|
2249 |
|
2250 |
#: admin/manage-fields.php:185
|
2251 |
+
msgid "Use Simple Upload"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
#: admin/manage-fields.php:185
|
2255 |
+
msgid "Use a simple upload field instead of the WordPress upload"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
#: admin/manage-fields.php:186
|
2259 |
+
msgid "Allowed Upload Extensions"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: admin/manage-fields.php:186
|
2263 |
+
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 (.*)"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
#: admin/manage-fields.php:187
|
2267 |
+
msgid "Avatar Size"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
#: admin/manage-fields.php:187
|
2271 |
+
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
#: admin/manage-fields.php:188
|
2275 |
+
msgid "Date-format"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
#: admin/manage-fields.php:188
|
2279 |
+
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, mm/yy, mm/dd, dd/mm, @<br/>If not specified, defaults to mm/dd/yy"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
#: admin/manage-fields.php:189
|
2283 |
+
msgid "Terms of Agreement"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
#: admin/manage-fields.php:189
|
2287 |
+
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>"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
#: admin/manage-fields.php:190
|
2291 |
+
msgid "Options"
|
2292 |
+
msgstr ""
|
2293 |
+
|
2294 |
+
#: admin/manage-fields.php:190
|
2295 |
+
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"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
#: admin/manage-fields.php:191
|
2299 |
+
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2300 |
+
msgstr ""
|
2301 |
+
|
2302 |
+
#: admin/manage-fields.php:192
|
2303 |
msgid "reCAPTCHA Type"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: admin/manage-fields.php:192
|
2307 |
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."
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: admin/manage-fields.php:193
|
2311 |
msgid "Site Key"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: admin/manage-fields.php:193
|
2315 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: admin/manage-fields.php:194
|
2319 |
msgid "Secret Key"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: admin/manage-fields.php:194
|
2323 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: admin/manage-fields.php:195
|
2327 |
msgid "Display on PB forms"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: admin/manage-fields.php:195
|
2331 |
msgid "PB Login"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: admin/manage-fields.php:195
|
2335 |
msgid "PB Register"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: admin/manage-fields.php:195
|
2339 |
msgid "PB Recover Password"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: admin/manage-fields.php:195
|
2343 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: admin/manage-fields.php:196
|
2347 |
msgid "Display on default WP forms"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: admin/manage-fields.php:196
|
2351 |
msgid "Default WP Login"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: admin/manage-fields.php:196
|
2355 |
msgid "Default WP Register"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: admin/manage-fields.php:196
|
2359 |
msgid "Default WP Recover Password"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: admin/manage-fields.php:196
|
2363 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: admin/manage-fields.php:197
|
2367 |
msgid "User Roles"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: admin/manage-fields.php:197
|
2371 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: admin/manage-fields.php:198
|
2375 |
msgid "Display on Edit Profile"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: admin/manage-fields.php:198
|
2379 |
msgid "Check if you want the select user role field to appear on Edit Profile forms"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: admin/manage-fields.php:199
|
2383 |
msgid "User Roles Order"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: admin/manage-fields.php:199
|
2387 |
msgid "Save the user role order from the user roles checkboxes"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: admin/manage-fields.php:200
|
2391 |
msgid "Default Value"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: admin/manage-fields.php:200
|
2395 |
msgid "Default value of the field"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: admin/manage-fields.php:201, admin/manage-fields.php:203, admin/manage-fields.php:204, admin/manage-fields.php:205
|
2399 |
msgid "Default Option"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: admin/manage-fields.php:201
|
2403 |
msgid "Specify the option which should be selected by default"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: admin/manage-fields.php:202
|
2407 |
msgid "Default Option(s)"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: admin/manage-fields.php:202
|
2411 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: admin/manage-fields.php:203, admin/manage-fields.php:204, admin/manage-fields.php:205
|
2415 |
msgid "Default option of the field"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: admin/manage-fields.php:206
|
2419 |
msgid "Show Currency Symbol"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: admin/manage-fields.php:206
|
2423 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: admin/manage-fields.php:207
|
2427 |
msgid "Show Post Type"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: admin/manage-fields.php:207
|
2431 |
msgid "Posts from what post type will be displayed in the select."
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: admin/manage-fields.php:208
|
2435 |
msgid "Allowable Values"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: admin/manage-fields.php:208
|
2439 |
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."
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: admin/manage-fields.php:209
|
2443 |
msgid "Error Message"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: admin/manage-fields.php:209
|
2447 |
msgid "Set a custom error message that will be displayed to the user."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: admin/manage-fields.php:210
|
2451 |
msgid "Time Format"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: admin/manage-fields.php:210
|
2455 |
msgid "Specify the time format."
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: admin/manage-fields.php:211
|
2459 |
msgid "Google Maps API Key"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: admin/manage-fields.php:211
|
2463 |
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."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: admin/manage-fields.php:216
|
2467 |
msgid "Default Latitude"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: admin/manage-fields.php:217
|
2471 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: admin/manage-fields.php:223
|
2475 |
msgid "Default Longitude"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: admin/manage-fields.php:224
|
2479 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: admin/manage-fields.php:230
|
2483 |
msgid "Default Zoom Level"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: admin/manage-fields.php:231
|
2487 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: admin/manage-fields.php:235
|
2491 |
msgid "Map Height"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: admin/manage-fields.php:235
|
2495 |
msgid "The height of the map."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: admin/manage-fields.php:236
|
2499 |
msgid "Default Content"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: admin/manage-fields.php:236
|
2503 |
msgid "Default value of the textarea"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: admin/manage-fields.php:237
|
2507 |
msgid "HTML Content"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: admin/manage-fields.php:237
|
2511 |
msgid "Add your HTML (or text) content"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: admin/manage-fields.php:238
|
2515 |
msgid "Phone Format"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: admin/manage-fields.php:238
|
2519 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: admin/manage-fields.php:238
|
2523 |
msgid "Eg. (###) ###-####"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: admin/manage-fields.php:238
|
2527 |
msgid "Empty field won't check for correct phone number."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: admin/manage-fields.php:239
|
2531 |
msgid "Heading Tag"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: admin/manage-fields.php:239
|
2535 |
msgid "Change heading field size on front-end forms"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: admin/manage-fields.php:240
|
2539 |
msgid "Min Number Value"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: admin/manage-fields.php:240
|
2543 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: admin/manage-fields.php:240
|
2547 |
msgid "Leave it empty for no min value"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: admin/manage-fields.php:241
|
2551 |
msgid "Max Number Value"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: admin/manage-fields.php:241
|
2555 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: admin/manage-fields.php:241
|
2559 |
msgid "Leave it empty for no max value"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: admin/manage-fields.php:242
|
2563 |
msgid "Number Step Value"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: admin/manage-fields.php:242
|
2567 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: admin/manage-fields.php:242
|
2571 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: admin/manage-fields.php:242
|
2575 |
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)"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: admin/manage-fields.php:242
|
2579 |
msgid "Leave it empty for no restriction"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: admin/manage-fields.php:243
|
2583 |
msgid "Whether the field is required or not"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: admin/manage-fields.php:244
|
2587 |
msgid "Overwrite Existing"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: admin/manage-fields.php:244
|
2591 |
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"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: admin/manage-fields.php:250
|
2595 |
msgid "POIs Load Type"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: admin/manage-fields.php:252
|
2599 |
msgid "POIs of the listed users (as filtered & paginated)"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: admin/manage-fields.php:253
|
2603 |
msgid "POIs of all the users for the filter* (no pagination)"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: admin/manage-fields.php:256
|
2607 |
msgid "This option allows you to load on a single map the POIs for all users, or just these for the listed ones (this will take into account the filters and the faceted menus). *Please use this feature wisely, it will impact the performance."
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: admin/manage-fields.php:263
|
2611 |
msgid "POI Bubble Info"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: admin/manage-fields.php:266
|
2615 |
msgid "Select the attributes to be listed inside the POI bubble."
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: admin/manage-fields.php:277
|
2619 |
msgid "Number of Users per Map Iteration"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: admin/manage-fields.php:278
|
2623 |
msgid "When loading the map of all users with no pagination, the map script will iterate multiple times and will expose gradually POIs on the map, until all the POIs for the users that match the criteria will be added on the map (think of this as of pagination for the map POIs). The smaller the number of users per iteration, the fastest the iteration response will be, but for a large number of users, the map script will iterate multiple times. Setting a higher limit will decrease the performance, but might produce a smaller number of iterations. <br><br><b>Please adjust this value to your hosting capabilities, and make sure that the value you set is the best for performance.</b> We recommend a <b>maximum</b> value of 300."
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: admin/manage-fields.php:286
|
2627 |
msgid "Form Field Properties"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: admin/manage-fields.php:300
|
2631 |
msgid "Registration & Edit Profile Forms"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: admin/manage-fields.php:320
|
2635 |
msgid "Usernames cannot be changed."
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: admin/manage-fields.php:323, modules/user-listing/userlisting.php:846, modules/user-listing/userlisting.php:2375
|
2639 |
msgid "Nickname"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: admin/manage-fields.php:324
|
2643 |
msgid "Display name publicly as"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: admin/manage-fields.php:327, modules/email-customizer/email-customizer.php:33, modules/user-listing/userlisting.php:121, modules/user-listing/userlisting.php:828, modules/user-listing/userlisting.php:2369
|
2647 |
msgid "Website"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: admin/manage-fields.php:331
|
2651 |
msgid "AIM"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: admin/manage-fields.php:332
|
2655 |
msgid "Yahoo IM"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: admin/manage-fields.php:333
|
2659 |
msgid "Jabber / Google Talk"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: admin/manage-fields.php:337, modules/user-listing/userlisting.php:124, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2370
|
2663 |
msgid "Biographical Info"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: admin/manage-fields.php:337
|
2667 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: admin/manage-fields.php:338, front-end/recover.php:72, modules/email-customizer/email-customizer.php:30
|
2671 |
msgid "Password"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: admin/manage-fields.php:338
|
2675 |
msgid "Type your password."
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: admin/manage-fields.php:339, front-end/recover.php:73
|
2679 |
msgid "Repeat Password"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: admin/manage-fields.php:339
|
2683 |
msgid "Type your password again. "
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: admin/manage-fields.php:341
|
2687 |
msgid "Blog Details"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: admin/manage-fields.php:400
|
2691 |
msgid "Select a Country"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: admin/manage-fields.php:401
|
2695 |
msgid "Afghanistan"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: admin/manage-fields.php:402
|
2699 |
msgid "Aland Islands"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: admin/manage-fields.php:403
|
2703 |
msgid "Albania"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: admin/manage-fields.php:404
|
2707 |
msgid "Algeria"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: admin/manage-fields.php:405
|
2711 |
msgid "American Samoa"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: admin/manage-fields.php:406
|
2715 |
msgid "Andorra"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: admin/manage-fields.php:407
|
2719 |
msgid "Angola"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: admin/manage-fields.php:408
|
2723 |
msgid "Anguilla"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: admin/manage-fields.php:409
|
2727 |
msgid "Antarctica"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: admin/manage-fields.php:410
|
2731 |
msgid "Antigua and Barbuda"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: admin/manage-fields.php:411
|
2735 |
msgid "Argentina"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: admin/manage-fields.php:412
|
2739 |
msgid "Armenia"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: admin/manage-fields.php:413
|
2743 |
msgid "Aruba"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: admin/manage-fields.php:414
|
2747 |
msgid "Australia"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: admin/manage-fields.php:415
|
2751 |
msgid "Austria"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: admin/manage-fields.php:416
|
2755 |
msgid "Azerbaijan"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: admin/manage-fields.php:417
|
2759 |
msgid "Bahamas"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: admin/manage-fields.php:418
|
2763 |
msgid "Bahrain"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: admin/manage-fields.php:419
|
2767 |
msgid "Bangladesh"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: admin/manage-fields.php:420
|
2771 |
msgid "Barbados"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: admin/manage-fields.php:421
|
2775 |
msgid "Belarus"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: admin/manage-fields.php:422
|
2779 |
msgid "Belgium"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: admin/manage-fields.php:423
|
2783 |
msgid "Belize"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: admin/manage-fields.php:424
|
2787 |
msgid "Benin"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: admin/manage-fields.php:425
|
2791 |
msgid "Bermuda"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: admin/manage-fields.php:426
|
2795 |
msgid "Bhutan"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: admin/manage-fields.php:427
|
2799 |
msgid "Bolivia"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: admin/manage-fields.php:428
|
2803 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: admin/manage-fields.php:429
|
2807 |
msgid "Bosnia and Herzegovina"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: admin/manage-fields.php:430
|
2811 |
msgid "Botswana"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: admin/manage-fields.php:431
|
2815 |
msgid "Bouvet Island"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: admin/manage-fields.php:432
|
2819 |
msgid "Brazil"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: admin/manage-fields.php:433
|
2823 |
msgid "British Indian Ocean Territory"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: admin/manage-fields.php:434
|
2827 |
msgid "British Virgin Islands"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: admin/manage-fields.php:435
|
2831 |
msgid "Brunei"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: admin/manage-fields.php:436
|
2835 |
msgid "Bulgaria"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: admin/manage-fields.php:437
|
2839 |
msgid "Burkina Faso"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: admin/manage-fields.php:438
|
2843 |
msgid "Burundi"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: admin/manage-fields.php:439
|
2847 |
msgid "Cambodia"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: admin/manage-fields.php:440
|
2851 |
msgid "Cameroon"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: admin/manage-fields.php:441
|
2855 |
msgid "Canada"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: admin/manage-fields.php:442
|
2859 |
msgid "Cape Verde"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: admin/manage-fields.php:443
|
2863 |
msgid "Cayman Islands"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: admin/manage-fields.php:444
|
2867 |
msgid "Central African Republic"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: admin/manage-fields.php:445
|
2871 |
msgid "Chad"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: admin/manage-fields.php:446
|
2875 |
msgid "Chile"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: admin/manage-fields.php:447
|
2879 |
msgid "China"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: admin/manage-fields.php:448
|
2883 |
msgid "Christmas Island"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: admin/manage-fields.php:449
|
2887 |
msgid "Cocos Islands"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: admin/manage-fields.php:450
|
2891 |
msgid "Colombia"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: admin/manage-fields.php:451
|
2895 |
msgid "Comoros"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: admin/manage-fields.php:452
|
2899 |
msgid "Cook Islands"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: admin/manage-fields.php:453
|
2903 |
msgid "Costa Rica"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: admin/manage-fields.php:454
|
2907 |
msgid "Croatia"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: admin/manage-fields.php:455
|
2911 |
msgid "Cuba"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: admin/manage-fields.php:456
|
2915 |
msgid "Curacao"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: admin/manage-fields.php:457
|
2919 |
msgid "Cyprus"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: admin/manage-fields.php:458
|
2923 |
msgid "Czech Republic"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: admin/manage-fields.php:459
|
2927 |
msgid "Democratic Republic of the Congo"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: admin/manage-fields.php:460
|
2931 |
msgid "Denmark"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: admin/manage-fields.php:461
|
2935 |
msgid "Djibouti"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: admin/manage-fields.php:462
|
2939 |
msgid "Dominica"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: admin/manage-fields.php:463
|
2943 |
msgid "Dominican Republic"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: admin/manage-fields.php:464
|
2947 |
msgid "East Timor"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: admin/manage-fields.php:465
|
2951 |
msgid "Ecuador"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: admin/manage-fields.php:466
|
2955 |
msgid "Egypt"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: admin/manage-fields.php:467
|
2959 |
msgid "El Salvador"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: admin/manage-fields.php:468
|
2963 |
msgid "Equatorial Guinea"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: admin/manage-fields.php:469
|
2967 |
msgid "Eritrea"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: admin/manage-fields.php:470
|
2971 |
msgid "Estonia"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: admin/manage-fields.php:471
|
2975 |
msgid "Ethiopia"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: admin/manage-fields.php:472
|
2979 |
msgid "Falkland Islands"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: admin/manage-fields.php:473
|
2983 |
msgid "Faroe Islands"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: admin/manage-fields.php:474
|
2987 |
msgid "Fiji"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: admin/manage-fields.php:475
|
2991 |
msgid "Finland"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: admin/manage-fields.php:476
|
2995 |
msgid "France"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: admin/manage-fields.php:477
|
2999 |
msgid "French Guiana"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: admin/manage-fields.php:478
|
3003 |
msgid "French Polynesia"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: admin/manage-fields.php:479
|
3007 |
msgid "French Southern Territories"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: admin/manage-fields.php:480
|
3011 |
msgid "Gabon"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: admin/manage-fields.php:481
|
3015 |
msgid "Gambia"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: admin/manage-fields.php:482
|
3019 |
msgid "Georgia"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: admin/manage-fields.php:483
|
3023 |
msgid "Germany"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: admin/manage-fields.php:484
|
3027 |
msgid "Ghana"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: admin/manage-fields.php:485
|
3031 |
msgid "Gibraltar"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: admin/manage-fields.php:486
|
3035 |
msgid "Greece"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: admin/manage-fields.php:487
|
3039 |
msgid "Greenland"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: admin/manage-fields.php:488
|
3043 |
msgid "Grenada"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: admin/manage-fields.php:489
|
3047 |
msgid "Guadeloupe"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: admin/manage-fields.php:490
|
3051 |
msgid "Guam"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: admin/manage-fields.php:491
|
3055 |
msgid "Guatemala"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: admin/manage-fields.php:492
|
3059 |
msgid "Guernsey"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: admin/manage-fields.php:493
|
3063 |
msgid "Guinea"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: admin/manage-fields.php:494
|
3067 |
msgid "Guinea-Bissau"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: admin/manage-fields.php:495
|
3071 |
msgid "Guyana"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: admin/manage-fields.php:496
|
3075 |
msgid "Haiti"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: admin/manage-fields.php:497
|
3079 |
msgid "Heard Island and McDonald Islands"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: admin/manage-fields.php:498
|
3083 |
msgid "Honduras"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: admin/manage-fields.php:499
|
3087 |
msgid "Hong Kong"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: admin/manage-fields.php:500
|
3091 |
msgid "Hungary"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: admin/manage-fields.php:501
|
3095 |
msgid "Iceland"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: admin/manage-fields.php:502
|
3099 |
msgid "India"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: admin/manage-fields.php:503
|
3103 |
msgid "Indonesia"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: admin/manage-fields.php:504
|
3107 |
msgid "Iran"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: admin/manage-fields.php:505
|
3111 |
msgid "Iraq"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: admin/manage-fields.php:506
|
3115 |
msgid "Ireland"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: admin/manage-fields.php:507
|
3119 |
msgid "Isle of Man"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: admin/manage-fields.php:508
|
3123 |
msgid "Israel"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: admin/manage-fields.php:509
|
3127 |
msgid "Italy"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: admin/manage-fields.php:510
|
3131 |
msgid "Ivory Coast"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: admin/manage-fields.php:511
|
3135 |
msgid "Jamaica"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: admin/manage-fields.php:512
|
3139 |
msgid "Japan"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: admin/manage-fields.php:513
|
3143 |
msgid "Jersey"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: admin/manage-fields.php:514
|
3147 |
msgid "Jordan"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: admin/manage-fields.php:515
|
3151 |
msgid "Kazakhstan"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: admin/manage-fields.php:516
|
3155 |
msgid "Kenya"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: admin/manage-fields.php:517
|
3159 |
msgid "Kiribati"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: admin/manage-fields.php:518
|
3163 |
msgid "Kosovo"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: admin/manage-fields.php:519
|
3167 |
msgid "Kuwait"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: admin/manage-fields.php:520
|
3171 |
msgid "Kyrgyzstan"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: admin/manage-fields.php:521
|
3175 |
msgid "Laos"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: admin/manage-fields.php:522
|
3179 |
msgid "Latvia"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: admin/manage-fields.php:523
|
3183 |
msgid "Lebanon"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: admin/manage-fields.php:524
|
3187 |
msgid "Lesotho"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: admin/manage-fields.php:525
|
3191 |
msgid "Liberia"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: admin/manage-fields.php:526
|
3195 |
msgid "Libya"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: admin/manage-fields.php:527
|
3199 |
msgid "Liechtenstein"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: admin/manage-fields.php:528
|
3203 |
msgid "Lithuania"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: admin/manage-fields.php:529
|
3207 |
msgid "Luxembourg"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: admin/manage-fields.php:530
|
3211 |
msgid "Macao"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: admin/manage-fields.php:531
|
3215 |
msgid "Macedonia"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: admin/manage-fields.php:532
|
3219 |
msgid "Madagascar"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: admin/manage-fields.php:533
|
3223 |
msgid "Malawi"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: admin/manage-fields.php:534
|
3227 |
msgid "Malaysia"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: admin/manage-fields.php:535
|
3231 |
msgid "Maldives"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: admin/manage-fields.php:536
|
3235 |
msgid "Mali"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: admin/manage-fields.php:537
|
3239 |
msgid "Malta"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: admin/manage-fields.php:538
|
3243 |
msgid "Marshall Islands"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: admin/manage-fields.php:539
|
3247 |
msgid "Martinique"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: admin/manage-fields.php:540
|
3251 |
msgid "Mauritania"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: admin/manage-fields.php:541
|
3255 |
msgid "Mauritius"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: admin/manage-fields.php:542
|
3259 |
msgid "Mayotte"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: admin/manage-fields.php:543
|
3263 |
msgid "Mexico"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: admin/manage-fields.php:544
|
3267 |
msgid "Micronesia"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: admin/manage-fields.php:545
|
3271 |
msgid "Moldova"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: admin/manage-fields.php:546
|
3275 |
msgid "Monaco"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: admin/manage-fields.php:547
|
3279 |
msgid "Mongolia"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: admin/manage-fields.php:548
|
3283 |
msgid "Montenegro"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: admin/manage-fields.php:549
|
3287 |
msgid "Montserrat"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: admin/manage-fields.php:550
|
3291 |
msgid "Morocco"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
+
#: admin/manage-fields.php:551
|
3295 |
msgid "Mozambique"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: admin/manage-fields.php:552
|
3299 |
msgid "Myanmar"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: admin/manage-fields.php:553
|
3303 |
msgid "Namibia"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: admin/manage-fields.php:554
|
3307 |
msgid "Nauru"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: admin/manage-fields.php:555
|
3311 |
msgid "Nepal"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: admin/manage-fields.php:556
|
3315 |
msgid "Netherlands"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: admin/manage-fields.php:557
|
3319 |
msgid "New Caledonia"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: admin/manage-fields.php:558
|
3323 |
msgid "New Zealand"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: admin/manage-fields.php:559
|
3327 |
msgid "Nicaragua"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: admin/manage-fields.php:560
|
3331 |
msgid "Niger"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: admin/manage-fields.php:561
|
3335 |
msgid "Nigeria"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: admin/manage-fields.php:562
|
3339 |
msgid "Niue"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: admin/manage-fields.php:563
|
3343 |
msgid "Norfolk Island"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: admin/manage-fields.php:564
|
3347 |
msgid "North Korea"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: admin/manage-fields.php:565
|
3351 |
msgid "Northern Mariana Islands"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: admin/manage-fields.php:566
|
3355 |
msgid "Norway"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: admin/manage-fields.php:567
|
3359 |
msgid "Oman"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: admin/manage-fields.php:568
|
3363 |
msgid "Pakistan"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: admin/manage-fields.php:569
|
3367 |
msgid "Palau"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: admin/manage-fields.php:570
|
3371 |
msgid "Palestinian Territory"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: admin/manage-fields.php:571
|
3375 |
msgid "Panama"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: admin/manage-fields.php:572
|
3379 |
msgid "Papua New Guinea"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: admin/manage-fields.php:573
|
3383 |
msgid "Paraguay"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: admin/manage-fields.php:574
|
3387 |
msgid "Peru"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: admin/manage-fields.php:575
|
3391 |
msgid "Philippines"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: admin/manage-fields.php:576
|
3395 |
msgid "Pitcairn"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: admin/manage-fields.php:577
|
3399 |
msgid "Poland"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: admin/manage-fields.php:578
|
3403 |
msgid "Portugal"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: admin/manage-fields.php:579
|
3407 |
msgid "Puerto Rico"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: admin/manage-fields.php:580
|
3411 |
msgid "Qatar"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: admin/manage-fields.php:581
|
3415 |
msgid "Republic of the Congo"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: admin/manage-fields.php:582
|
3419 |
msgid "Reunion"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: admin/manage-fields.php:583
|
3423 |
msgid "Romania"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: admin/manage-fields.php:584
|
3427 |
msgid "Russia"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
+
#: admin/manage-fields.php:585
|
3431 |
msgid "Rwanda"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: admin/manage-fields.php:586
|
3435 |
msgid "Saint Barthelemy"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: admin/manage-fields.php:587
|
3439 |
msgid "Saint Helena"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: admin/manage-fields.php:588
|
3443 |
msgid "Saint Kitts and Nevis"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: admin/manage-fields.php:589
|
3447 |
msgid "Saint Lucia"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: admin/manage-fields.php:590
|
3451 |
msgid "Saint Martin"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: admin/manage-fields.php:591
|
3455 |
msgid "Saint Pierre and Miquelon"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: admin/manage-fields.php:592
|
3459 |
msgid "Saint Vincent and the Grenadines"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: admin/manage-fields.php:593
|
3463 |
msgid "Samoa"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: admin/manage-fields.php:594
|
3467 |
msgid "San Marino"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: admin/manage-fields.php:595
|
3471 |
msgid "Sao Tome and Principe"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: admin/manage-fields.php:596
|
3475 |
msgid "Saudi Arabia"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: admin/manage-fields.php:597
|
3479 |
msgid "Senegal"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: admin/manage-fields.php:598
|
3483 |
msgid "Serbia"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: admin/manage-fields.php:599
|
3487 |
msgid "Seychelles"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: admin/manage-fields.php:600
|
3491 |
msgid "Sierra Leone"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
+
#: admin/manage-fields.php:601
|
3495 |
msgid "Singapore"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: admin/manage-fields.php:602
|
3499 |
msgid "Sint Maarten"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: admin/manage-fields.php:603
|
3503 |
msgid "Slovakia"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: admin/manage-fields.php:604
|
3507 |
msgid "Slovenia"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: admin/manage-fields.php:605
|
3511 |
msgid "Solomon Islands"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: admin/manage-fields.php:606
|
3515 |
msgid "Somalia"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: admin/manage-fields.php:607
|
3519 |
msgid "South Africa"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: admin/manage-fields.php:608
|
3523 |
msgid "South Georgia and the South Sandwich Islands"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: admin/manage-fields.php:609
|
3527 |
msgid "South Korea"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: admin/manage-fields.php:610
|
3531 |
msgid "South Sudan"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: admin/manage-fields.php:611
|
3535 |
msgid "Spain"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: admin/manage-fields.php:612
|
3539 |
msgid "Sri Lanka"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: admin/manage-fields.php:613
|
3543 |
msgid "Sudan"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
+
#: admin/manage-fields.php:614
|
3547 |
msgid "Suriname"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: admin/manage-fields.php:615
|
3551 |
msgid "Svalbard and Jan Mayen"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
+
#: admin/manage-fields.php:616
|
3555 |
msgid "Swaziland"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: admin/manage-fields.php:617
|
3559 |
msgid "Sweden"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: admin/manage-fields.php:618
|
3563 |
msgid "Switzerland"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: admin/manage-fields.php:619
|
3567 |
msgid "Syria"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
+
#: admin/manage-fields.php:620
|
3571 |
msgid "Taiwan"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
+
#: admin/manage-fields.php:621
|
3575 |
msgid "Tajikistan"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: admin/manage-fields.php:622
|
3579 |
msgid "Tanzania"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: admin/manage-fields.php:623
|
3583 |
msgid "Thailand"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: admin/manage-fields.php:624
|
3587 |
msgid "Togo"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: admin/manage-fields.php:625
|
3591 |
msgid "Tokelau"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: admin/manage-fields.php:626
|
3595 |
msgid "Tonga"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: admin/manage-fields.php:627
|
3599 |
msgid "Trinidad and Tobago"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
+
#: admin/manage-fields.php:628
|
3603 |
msgid "Tunisia"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
+
#: admin/manage-fields.php:629
|
3607 |
msgid "Turkey"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
+
#: admin/manage-fields.php:630
|
3611 |
msgid "Turkmenistan"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: admin/manage-fields.php:631
|
3615 |
msgid "Turks and Caicos Islands"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: admin/manage-fields.php:632
|
3619 |
msgid "Tuvalu"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: admin/manage-fields.php:633
|
3623 |
msgid "U.S. Virgin Islands"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: admin/manage-fields.php:634
|
3627 |
msgid "Uganda"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: admin/manage-fields.php:635
|
3631 |
msgid "Ukraine"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: admin/manage-fields.php:636
|
3635 |
msgid "United Arab Emirates"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: admin/manage-fields.php:637
|
3639 |
msgid "United Kingdom"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: admin/manage-fields.php:638
|
3643 |
msgid "United States"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: admin/manage-fields.php:639
|
3647 |
msgid "United States Minor Outlying Islands"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: admin/manage-fields.php:640
|
3651 |
msgid "Uruguay"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
+
#: admin/manage-fields.php:641
|
3655 |
msgid "Uzbekistan"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
#: admin/manage-fields.php:642
|
3659 |
msgid "Vanuatu"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: admin/manage-fields.php:643
|
3663 |
msgid "Vatican"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: admin/manage-fields.php:644
|
3667 |
msgid "Venezuela"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: admin/manage-fields.php:645
|
3671 |
msgid "Vietnam"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: admin/manage-fields.php:646
|
3675 |
msgid "Wallis and Futuna"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: admin/manage-fields.php:647
|
3679 |
msgid "Western Sahara"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: admin/manage-fields.php:648
|
3683 |
msgid "Yemen"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: admin/manage-fields.php:649
|
3687 |
msgid "Zambia"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: admin/manage-fields.php:650
|
3691 |
msgid "Zimbabwe"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
+
#: admin/manage-fields.php:683
|
3695 |
msgid "Albania Lek"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: admin/manage-fields.php:684
|
3699 |
msgid "Afghanistan Afghani"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: admin/manage-fields.php:685
|
3703 |
msgid "Argentina Peso"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: admin/manage-fields.php:687
|
3707 |
msgid "Australia Dollar"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: admin/manage-fields.php:688
|
3711 |
msgid "Azerbaijan New Manat"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: admin/manage-fields.php:689
|
3715 |
msgid "Bahamas Dollar"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: admin/manage-fields.php:690
|
3719 |
msgid "Barbados Dollar"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: admin/manage-fields.php:691
|
3723 |
msgid "Bangladeshi taka"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: admin/manage-fields.php:692
|
3727 |
msgid "Belarus Ruble"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: admin/manage-fields.php:693
|
3731 |
msgid "Belize Dollar"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: admin/manage-fields.php:694
|
3735 |
msgid "Bermuda Dollar"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: admin/manage-fields.php:695
|
3739 |
msgid "Bolivia Boliviano"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: admin/manage-fields.php:696
|
3743 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: admin/manage-fields.php:697
|
3747 |
msgid "Botswana Pula"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: admin/manage-fields.php:698
|
3751 |
msgid "Bulgaria Lev"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: admin/manage-fields.php:699
|
3755 |
msgid "Brazil Real"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: admin/manage-fields.php:700
|
3759 |
msgid "Brunei Darussalam Dollar"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: admin/manage-fields.php:701
|
3763 |
msgid "Cambodia Riel"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: admin/manage-fields.php:702
|
3767 |
msgid "Canada Dollar"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: admin/manage-fields.php:703
|
3771 |
msgid "Cayman Islands Dollar"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: admin/manage-fields.php:704
|
3775 |
msgid "Chile Peso"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: admin/manage-fields.php:705
|
3779 |
msgid "China Yuan Renminbi"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: admin/manage-fields.php:706
|
3783 |
msgid "Colombia Peso"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: admin/manage-fields.php:707
|
3787 |
msgid "Costa Rica Colon"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: admin/manage-fields.php:708
|
3791 |
msgid "Croatia Kuna"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: admin/manage-fields.php:709
|
3795 |
msgid "Cuba Peso"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: admin/manage-fields.php:710
|
3799 |
msgid "Czech Republic Koruna"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: admin/manage-fields.php:711
|
3803 |
msgid "Denmark Krone"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: admin/manage-fields.php:712
|
3807 |
msgid "Dominican Republic Peso"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: admin/manage-fields.php:713
|
3811 |
msgid "East Caribbean Dollar"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: admin/manage-fields.php:714
|
3815 |
msgid "Egypt Pound"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: admin/manage-fields.php:715
|
3819 |
msgid "El Salvador Colon"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: admin/manage-fields.php:716
|
3823 |
msgid "Estonia Kroon"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: admin/manage-fields.php:717
|
3827 |
msgid "Euro"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: admin/manage-fields.php:718
|
3831 |
msgid "Falkland Islands (Malvinas) Pound"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: admin/manage-fields.php:719
|
3835 |
msgid "Fiji Dollar"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: admin/manage-fields.php:720
|
3839 |
msgid "Ghana Cedis"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: admin/manage-fields.php:721
|
3843 |
msgid "Gibraltar Pound"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: admin/manage-fields.php:722
|
3847 |
msgid "Guatemala Quetzal"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: admin/manage-fields.php:723
|
3851 |
msgid "Guernsey Pound"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: admin/manage-fields.php:724
|
3855 |
msgid "Guyana Dollar"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: admin/manage-fields.php:725
|
3859 |
msgid "Honduras Lempira"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: admin/manage-fields.php:726
|
3863 |
msgid "Hong Kong Dollar"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: admin/manage-fields.php:727
|
3867 |
msgid "Hungary Forint"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: admin/manage-fields.php:728
|
3871 |
msgid "Iceland Krona"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: admin/manage-fields.php:729
|
3875 |
msgid "India Rupee"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: admin/manage-fields.php:730
|
3879 |
msgid "Indonesia Rupiah"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: admin/manage-fields.php:731
|
3883 |
msgid "Iran Rial"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: admin/manage-fields.php:732
|
3887 |
msgid "Isle of Man Pound"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: admin/manage-fields.php:733
|
3891 |
msgid "Israel Shekel"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: admin/manage-fields.php:734
|
3895 |
msgid "Jamaica Dollar"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: admin/manage-fields.php:735
|
3899 |
msgid "Japan Yen"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: admin/manage-fields.php:736
|
3903 |
msgid "Jersey Pound"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: admin/manage-fields.php:737
|
3907 |
msgid "Kazakhstan Tenge"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: admin/manage-fields.php:738
|
3911 |
msgid "Korea (North) Won"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: admin/manage-fields.php:739
|
3915 |
msgid "Korea (South) Won"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: admin/manage-fields.php:740
|
3919 |
msgid "Kyrgyzstan Som"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: admin/manage-fields.php:741
|
3923 |
msgid "Laos Kip"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: admin/manage-fields.php:742
|
3927 |
msgid "Latvia Lat"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: admin/manage-fields.php:743
|
3931 |
msgid "Lebanon Pound"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: admin/manage-fields.php:744
|
3935 |
msgid "Liberia Dollar"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: admin/manage-fields.php:745
|
3939 |
msgid "Lithuania Litas"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: admin/manage-fields.php:746
|
3943 |
msgid "Macedonia Denar"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: admin/manage-fields.php:747
|
3947 |
msgid "Malaysia Ringgit"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: admin/manage-fields.php:748
|
3951 |
msgid "Mauritius Rupee"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: admin/manage-fields.php:749
|
3955 |
msgid "Mexico Peso"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: admin/manage-fields.php:750
|
3959 |
msgid "Mongolia Tughrik"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: admin/manage-fields.php:751
|
3963 |
msgid "Mozambique Metical"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: admin/manage-fields.php:752
|
3967 |
msgid "Namibia Dollar"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: admin/manage-fields.php:753
|
3971 |
msgid "Nepal Rupee"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: admin/manage-fields.php:754
|
3975 |
msgid "Netherlands Antilles Guilder"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: admin/manage-fields.php:755
|
3979 |
msgid "New Zealand Dollar"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: admin/manage-fields.php:756
|
3983 |
msgid "Nicaragua Cordoba"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: admin/manage-fields.php:757
|
3987 |
msgid "Nigeria Naira"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: admin/manage-fields.php:758
|
3991 |
msgid "Norway Krone"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: admin/manage-fields.php:759
|
3995 |
msgid "Oman Rial"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: admin/manage-fields.php:760
|
3999 |
msgid "Pakistan Rupee"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: admin/manage-fields.php:761
|
4003 |
msgid "Panama Balboa"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: admin/manage-fields.php:762
|
4007 |
msgid "Paraguay Guarani"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: admin/manage-fields.php:763
|
4011 |
msgid "Peru Nuevo Sol"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: admin/manage-fields.php:764
|
4015 |
msgid "Philippines Peso"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: admin/manage-fields.php:765
|
4019 |
msgid "Poland Zloty"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: admin/manage-fields.php:766
|
4023 |
msgid "Qatar Riyal"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: admin/manage-fields.php:767
|
4027 |
msgid "Romania New Leu"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: admin/manage-fields.php:768
|
4031 |
msgid "Russia Ruble"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: admin/manage-fields.php:769
|
4035 |
msgid "Saint Helena Pound"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: admin/manage-fields.php:770
|
4039 |
msgid "Saudi Arabia Riyal"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: admin/manage-fields.php:771
|
4043 |
msgid "Serbia Dinar"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
+
#: admin/manage-fields.php:772
|
4047 |
msgid "Seychelles Rupee"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: admin/manage-fields.php:773
|
4051 |
msgid "Singapore Dollar"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: admin/manage-fields.php:774
|
4055 |
msgid "Solomon Islands Dollar"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: admin/manage-fields.php:775
|
4059 |
msgid "Somalia Shilling"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: admin/manage-fields.php:776
|
4063 |
msgid "South Africa Rand"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
+
#: admin/manage-fields.php:777
|
4067 |
msgid "Sri Lanka Rupee"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: admin/manage-fields.php:778
|
4071 |
msgid "Sweden Krona"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: admin/manage-fields.php:779
|
4075 |
msgid "Switzerland Franc"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: admin/manage-fields.php:780
|
4079 |
msgid "Suriname Dollar"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: admin/manage-fields.php:781
|
4083 |
msgid "Syria Pound"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: admin/manage-fields.php:782
|
4087 |
msgid "Taiwan New Dollar"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: admin/manage-fields.php:783
|
4091 |
msgid "Thailand Baht"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: admin/manage-fields.php:784
|
4095 |
msgid "Trinidad and Tobago Dollar"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: admin/manage-fields.php:785, admin/manage-fields.php:786
|
4099 |
msgid "Turkey Lira"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: admin/manage-fields.php:787
|
4103 |
msgid "Tuvalu Dollar"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: admin/manage-fields.php:788
|
4107 |
msgid "Ukraine Hryvna"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: admin/manage-fields.php:789
|
4111 |
msgid "United Kingdom Pound"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: admin/manage-fields.php:790
|
4115 |
msgid "Uganda Shilling"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: admin/manage-fields.php:791
|
4119 |
msgid "US Dollar"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: admin/manage-fields.php:792
|
4123 |
msgid "Uruguay Peso"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: admin/manage-fields.php:793
|
4127 |
msgid "Uzbekistan Som"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: admin/manage-fields.php:794
|
4131 |
msgid "Venezuela Bolivar"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: admin/manage-fields.php:795
|
4135 |
msgid "Viet Nam Dong"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: admin/manage-fields.php:796
|
4139 |
msgid "Yemen Rial"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: admin/manage-fields.php:797
|
4143 |
msgid "Zimbabwe Dollar"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: admin/manage-fields.php:1271
|
4147 |
msgid ""
|
4148 |
"That field is already added in this form\n"
|
4149 |
""
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: admin/manage-fields.php:1264, admin/manage-fields.php:1102
|
4153 |
msgid ""
|
4154 |
"You must select a field\n"
|
4155 |
""
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: admin/manage-fields.php:1112
|
4159 |
msgid ""
|
4160 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4161 |
""
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: admin/manage-fields.php:1126
|
4165 |
msgid ""
|
4166 |
"The entered avatar size is not numerical\n"
|
4167 |
""
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: admin/manage-fields.php:1123
|
4171 |
msgid ""
|
4172 |
"The entered avatar size is not between 20 and 200\n"
|
4173 |
""
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: admin/manage-fields.php:1137
|
4177 |
msgid ""
|
4178 |
"You must enter a value for the row number\n"
|
4179 |
""
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: admin/manage-fields.php:1134
|
4183 |
msgid ""
|
4184 |
"The entered row number is not numerical\n"
|
4185 |
""
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: admin/manage-fields.php:1145
|
4189 |
msgid ""
|
4190 |
"You must enter the site key\n"
|
4191 |
""
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: admin/manage-fields.php:1147
|
4195 |
msgid ""
|
4196 |
"You must enter the secret key\n"
|
4197 |
""
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: admin/manage-fields.php:1169
|
4201 |
msgid ""
|
4202 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4203 |
""
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: admin/manage-fields.php:1155
|
4207 |
msgid ""
|
4208 |
"You must enter a value for the date-format\n"
|
4209 |
""
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: admin/manage-fields.php:1188
|
4213 |
msgid ""
|
4214 |
"The meta-name cannot be empty\n"
|
4215 |
""
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: admin/manage-fields.php:1202, admin/manage-fields.php:1213
|
4219 |
msgid ""
|
4220 |
"That meta-name is already in use\n"
|
4221 |
""
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: admin/manage-fields.php:1194
|
4225 |
msgid ""
|
4226 |
"That meta-name can't be used, please choose another\n"
|
4227 |
""
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: admin/manage-fields.php:1224
|
4231 |
msgid ""
|
4232 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4233 |
""
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: admin/manage-fields.php:1248
|
4237 |
msgid ""
|
4238 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4239 |
""
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: admin/manage-fields.php:1244
|
4243 |
msgid ""
|
4244 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4245 |
""
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: admin/manage-fields.php:1255
|
4249 |
msgid ""
|
4250 |
"Please select at least one user role\n"
|
4251 |
""
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: admin/manage-fields.php:1322
|
4255 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: admin/manage-fields.php:1337
|
4259 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: admin/manage-fields.php:1348
|
4263 |
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."
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: admin/manage-fields.php:1346
|
4267 |
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."
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: admin/manage-fields.php:1445
|
4271 |
msgid "Search Location"
|
4272 |
msgstr ""
|
4273 |
|
4399 |
msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: admin/private-website.php:159, features/functions.php:942, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:63, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:293, ../pb-add-on-customization-toolbox/includes/views/view-forms.php:321, ../pb-add-on-customization-toolbox/includes/views/view-shortcodes.php:77, ../pb-add-on-customization-toolbox/includes/views/view-userlisting.php:91, features/content-restriction/content-restriction.php:162, modules/class-mustache-templates/class-mustache-templates.php:390, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:402, assets/lib/wck-api/wordpress-creation-kit.php:405
|
4403 |
msgid "Save Changes"
|
4404 |
msgstr ""
|
4405 |
|
4487 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: features/functions.php:733
|
4491 |
msgid "Strength indicator"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: features/functions.php:759, features/functions.php:783
|
4495 |
msgid "Very Weak"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: features/functions.php:773
|
4499 |
msgid "Minimum length of %d characters."
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: features/functions.php:784, front-end/recover.php:361, front-end/default-fields/password/password.php:56
|
4503 |
msgid "The password must have a minimum strength of %s"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: features/functions.php:861
|
4507 |
msgid "This field is required"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: features/functions.php:899, front-end/default-fields/recaptcha/recaptcha.php:524, front-end/default-fields/recaptcha/recaptcha.php:515, front-end/default-fields/recaptcha/recaptcha.php:580, front-end/default-fields/recaptcha/recaptcha.php:628
|
4511 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: features/functions.php:906
|
4515 |
msgid "Incorrect phone number"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: features/functions.php:970, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447
|
4519 |
msgid "Content"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: features/functions.php:1152
|
4523 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: features/functions.php:1165
|
4527 |
msgid "<br><br>You can visit your site at "
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: features/functions.php:1251
|
4531 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: features/functions.php:1405
|
4535 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: features/functions.php:1446
|
4539 |
msgid "You are not currently logged in."
|
4540 |
msgstr ""
|
4541 |
|
4843 |
msgid "By checking this option, you will allow users that have the 'delete_users' capability to see the list of Unconfirmed Email Addresses."
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:46
|
4847 |
+
msgid "Disable confirmation dialog for the {{approval_url}} or {{approval_link}} Email Customizer tags"
|
4848 |
+
msgstr ""
|
4849 |
+
|
4850 |
+
#: ../pb-add-on-customization-toolbox/includes/views/view-admin.php:55
|
4851 |
+
msgid "By checking this option, you will disable the confirmation dialog, allowing you to approve new users simply by visiting the <strong>{{approval_url}}</strong> or <strong>{{approval_link}}</strong>."
|
4852 |
+
msgstr ""
|
4853 |
+
|
4854 |
#: ../pb-add-on-customization-toolbox/includes/views/view-fields.php:14
|
4855 |
msgid "Automatically generate password for users"
|
4856 |
msgstr ""
|
5231 |
msgid "User successfully unapproved!"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: features/admin-approval/admin-approval.php:68, features/admin-approval/admin-approval.php:344
|
5235 |
msgid "User successfully approved!"
|
5236 |
msgstr ""
|
5237 |
|
5279 |
msgid "Your account has been successfully created!"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: features/admin-approval/admin-approval.php:302
|
5283 |
+
msgid "Something went wrong!"
|
5284 |
+
msgstr ""
|
5285 |
+
|
5286 |
+
#: features/admin-approval/admin-approval.php:298
|
5287 |
+
msgid "User not approved!"
|
5288 |
+
msgstr ""
|
5289 |
+
|
5290 |
+
#: features/admin-approval/admin-approval.php:283
|
5291 |
+
msgid "Do you wish to approve the registration?"
|
5292 |
+
msgstr ""
|
5293 |
+
|
5294 |
+
#: features/admin-approval/admin-approval.php:323
|
5295 |
msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
|
5296 |
msgstr ""
|
5297 |
|
5371 |
msgid "Conditional Rules"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: features/conditional-fields/conditional-fields.php:569
|
5375 |
msgid "This field has conditional logic enabled."
|
5376 |
msgstr ""
|
5377 |
|
7005 |
msgid "Remove"
|
7006 |
msgstr ""
|
7007 |
|
7008 |
+
#: front-end/extra-fields/upload/upload.php:189
|
7009 |
msgid "Select File"
|
7010 |
msgstr ""
|
7011 |
|
7012 |
+
#: front-end/extra-fields/upload/upload.php:195
|
7013 |
msgid "Upload "
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: front-end/extra-fields/upload/upload.php:174, front-end/extra-fields/upload/upload_helper_functions.php:61
|
7017 |
msgid "Files must be smaller than "
|
7018 |
msgstr ""
|
7019 |
|
7020 |
+
#: front-end/extra-fields/upload/upload.php:175, front-end/extra-fields/upload/upload_helper_functions.php:87, front-end/extra-fields/upload/upload_helper_functions.php:96
|
7021 |
msgid "Sorry, you cannot upload this file type for this field."
|
7022 |
msgstr ""
|
7023 |
|