Version Description
- Check the reset password key existence before resetting a password. Credit to Shiraz Ali Khan
- Changed german translation files
- Fixed a incompatibility with Private Website and Buddypress
- Fixed a warning that was being thrown when the plugin was installed.
Download this release
Release Info
Developer | madalin.ungureanu |
Plugin | User registration & user profile – Profile Builder |
Version | 3.2.9 |
Comparing to | |
See all releases |
Code changes from version 3.2.8 to 3.2.9
- features/functions.php +1 -1
- front-end/default-fields/recaptcha/recaptcha.php +13 -3
- front-end/login.php +4 -0
- front-end/recover.php +10 -0
- index.php +2 -2
- readme.txt +15 -11
- translation/profile-builder-de_DE.mo +0 -0
- translation/profile-builder-de_DE.po +110 -105
- translation/profile-builder.catalog.php +1 -1
- translation/profile-builder.pot +1031 -1031
features/functions.php
CHANGED
@@ -1339,7 +1339,7 @@ function wppb_private_website_functionality(){
|
|
1339 |
$allowed_pages = apply_filters( 'wppb_private_website_allowed_pages', $allowed_pages );
|
1340 |
|
1341 |
global $post;
|
1342 |
-
if( !isset( $post ) ) {
|
1343 |
if( function_exists('url_to_postid') ) {
|
1344 |
$post_id = url_to_postid(wppb_curpageurl());//try to get the id from the actual url
|
1345 |
}else {
|
1339 |
$allowed_pages = apply_filters( 'wppb_private_website_allowed_pages', $allowed_pages );
|
1340 |
|
1341 |
global $post;
|
1342 |
+
if( !isset( $post ) || ( isset($post) && $post->ID == 0 ) ) {//added || ( isset($post) && $post->ID == 0 ) for a compatibility issue with BuddyPress where the ID was 0 for a page
|
1343 |
if( function_exists('url_to_postid') ) {
|
1344 |
$post_id = url_to_postid(wppb_curpageurl());//try to get the id from the actual url
|
1345 |
}else {
|
front-end/default-fields/recaptcha/recaptcha.php
CHANGED
@@ -147,12 +147,22 @@ function wppb_recaptcha_script_footer(){
|
|
147 |
return jQuery(this).val() === token;
|
148 |
});
|
149 |
|
|
|
|
|
150 |
/* dont submit form if PMS gateway is Stripe */
|
151 |
-
if( jQuery(".pms_pay_gate").length > 0
|
152 |
-
jQuery(
|
153 |
-
|
|
|
|
|
|
|
|
|
|
|
154 |
var form = elem.closest("form");
|
155 |
form.submit();
|
|
|
|
|
|
|
156 |
}
|
157 |
|
158 |
}
|
147 |
return jQuery(this).val() === token;
|
148 |
});
|
149 |
|
150 |
+
var submitForm = true
|
151 |
+
|
152 |
/* dont submit form if PMS gateway is Stripe */
|
153 |
+
if( jQuery(".pms_pay_gate").length > 0 ){
|
154 |
+
jQuery(".pms_pay_gate").each( function(){
|
155 |
+
if( jQuery(this).val() == "stripe_intents" || jQuery(this).val() == "stripe" )
|
156 |
+
submitForm = false
|
157 |
+
})
|
158 |
+
}
|
159 |
+
|
160 |
+
if( submitForm ){
|
161 |
var form = elem.closest("form");
|
162 |
form.submit();
|
163 |
+
} else {
|
164 |
+
jQuery(document).trigger( "wppb_invisible_recaptcha_success" )
|
165 |
+
|
166 |
}
|
167 |
|
168 |
}
|
front-end/login.php
CHANGED
@@ -346,6 +346,10 @@ function wppb_login_redirect( $redirect_to, $requested_redirect_to, $user ){
|
|
346 |
// CHECK FOR REDIRECT
|
347 |
$redirect_to = wppb_get_redirect_url( sanitize_text_field( $_POST['wppb_redirect_priority'] ), 'after_login', $redirect_to, $user );
|
348 |
$redirect_to = apply_filters( 'wppb_after_login_redirect_url', $redirect_to );
|
|
|
|
|
|
|
|
|
349 |
}
|
350 |
}
|
351 |
|
346 |
// CHECK FOR REDIRECT
|
347 |
$redirect_to = wppb_get_redirect_url( sanitize_text_field( $_POST['wppb_redirect_priority'] ), 'after_login', $redirect_to, $user );
|
348 |
$redirect_to = apply_filters( 'wppb_after_login_redirect_url', $redirect_to );
|
349 |
+
|
350 |
+
// This should not be empty, if we don't have a redirect, set it to the current page URL
|
351 |
+
if( empty( $redirect_to ) )
|
352 |
+
$redirect_to = wppb_curpageurl();
|
353 |
}
|
354 |
}
|
355 |
|
front-end/recover.php
CHANGED
@@ -94,6 +94,7 @@ function wppb_create_recover_password_form( $user, $post_data ){
|
|
94 |
<?php $button_name = __('Reset Password', 'profile-builder'); ?>
|
95 |
<input name="recover_password2" type="submit" id="wppb-recover-password-button" class="<?php echo apply_filters( 'wppb_recover_submit_class', "submit button" ); ?>" value="<?php echo apply_filters('wppb_recover_password_button_name1', $button_name); ?>" />
|
96 |
<input name="action2" type="hidden" id="action2" value="recover_password2" />
|
|
|
97 |
</p><!-- .form-submit -->
|
98 |
<?php wp_nonce_field( 'verify_true_password_recovery2_'.$user->ID, 'password_recovery_nonce_field2' ); ?>
|
99 |
</form><!-- #recover_password -->
|
@@ -337,6 +338,15 @@ function wppb_front_end_password_recovery(){
|
|
337 |
$password_change_message = '';
|
338 |
|
339 |
if( ( !empty( $_POST['passw1'] ) && !empty( $_POST['passw2'] ) ) ){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
if( $_POST['passw1'] != $_POST['passw2'] ) {
|
341 |
$password_change_message = __('The entered passwords don\'t match!', 'profile-builder');
|
342 |
$output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' );
|
94 |
<?php $button_name = __('Reset Password', 'profile-builder'); ?>
|
95 |
<input name="recover_password2" type="submit" id="wppb-recover-password-button" class="<?php echo apply_filters( 'wppb_recover_submit_class', "submit button" ); ?>" value="<?php echo apply_filters('wppb_recover_password_button_name1', $button_name); ?>" />
|
96 |
<input name="action2" type="hidden" id="action2" value="recover_password2" />
|
97 |
+
<input name="key" type="hidden" id="key" value="<?php echo esc_attr( $_GET['key'] ) ?>" />
|
98 |
</p><!-- .form-submit -->
|
99 |
<?php wp_nonce_field( 'verify_true_password_recovery2_'.$user->ID, 'password_recovery_nonce_field2' ); ?>
|
100 |
</form><!-- #recover_password -->
|
338 |
$password_change_message = '';
|
339 |
|
340 |
if( ( !empty( $_POST['passw1'] ) && !empty( $_POST['passw2'] ) ) ){
|
341 |
+
|
342 |
+
//get the login name and key and verify if they match the ones in the database
|
343 |
+
$key = sanitize_text_field( $_POST['key'] );
|
344 |
+
$user_object = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->users WHERE user_activation_key = %s", $key ) );
|
345 |
+
if( empty( $user_object ) || ( !empty( $user_object ) && $user_object->ID === absint( $_POST['userData'] ) ) ){
|
346 |
+
$password_change_message = __('Invalid key!', 'profile-builder');
|
347 |
+
$output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' );
|
348 |
+
}
|
349 |
+
|
350 |
if( $_POST['passw1'] != $_POST['passw2'] ) {
|
351 |
$password_change_message = __('The entered passwords don\'t match!', 'profile-builder');
|
352 |
$output .= wppb_password_recovery_error( $password_change_message, 'wppb_recover_password_password_changed_message2' );
|
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.2.
|
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.2.
|
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.2.9
|
7 |
Author: Cozmoslabs
|
8 |
Author URI: https://www.cozmoslabs.com/
|
9 |
Text Domain: profile-builder
|
65 |
*
|
66 |
*
|
67 |
*/
|
68 |
+
define('PROFILE_BUILDER_VERSION', '3.2.9' );
|
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
@@ -4,7 +4,7 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
|
|
4 |
Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content, profile
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 5.5.1
|
7 |
-
Stable tag: 3.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -14,13 +14,11 @@ Powerful user profile plugin for creating front-end login, user registration and
|
|
14 |
|
15 |
**[Profile Builder](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) is the all in one user profile plugin for WordPress.**
|
16 |
|
17 |
-
Easy to use profile plugin for creating front-end login, user registration and edit profile forms by using shortcodes.
|
18 |
|
19 |
**Restrict Content** based on user role or logged in status. Manage user roles and capabilities using the built in **Role Editor**.
|
20 |
|
21 |
-
|
22 |
-
|
23 |
-
Profile Builder lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user profile or register (front-end user registration).
|
24 |
Users with administrator rights can customize basic user fields or add custom user fields to the front-end forms.
|
25 |
|
26 |
To achieve this, simply create a new page and give it an intuitive name(i.e. Edit Profile).
|
@@ -40,9 +38,9 @@ You can use the following shortcode list to display the forms:
|
|
40 |
== Profile Builder Features ==
|
41 |
|
42 |
* drag & drop to reorder user profile fields
|
43 |
-
* enable **Email Confirmation** (on registration users will receive a notification to confirm their email address)
|
44 |
* choose between login with **only Username, Email** or **both**
|
45 |
-
* enforce a **minimum password length** and **minimum password strength** (using the default WordPress password strength meter)
|
46 |
* assign users a specific role at registration (using **[wppb-register role="desired_role"]** shortcode argument for the register form)
|
47 |
* [redirect users](https://www.cozmoslabs.com/46469-redirect-users-after-login-registration-wordpress/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) after login, register and edit-profile using redirect_url shortcode argument ( e.g **[wppb-login redirect_url="www.example.com"]** )
|
48 |
* add register and lost password links below the login form (using **[wppb-login register_url="www.example.com" lostpassword_url="www.example.com"]** shortcode arguments)
|
@@ -51,13 +49,13 @@ You can use the following shortcode list to display the forms:
|
|
51 |
* **Admin Bar Settings**: choose which user roles view the admin bar in the front-end
|
52 |
* select which user profile fields are visible in the frontend
|
53 |
* extended functionality available via [Add-ons](http://www.cozmoslabs.com/profile-builder-add-ons/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree)
|
54 |
-
* **Roles Editor**: add, edit, remove or clone user roles and capabilities
|
55 |
-
*
|
56 |
* **User Role Select** field on register and edit profile forms
|
57 |
* **Content Restriction**: [restrict content](https://www.cozmoslabs.com/105571-restrict-content-user-role-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) based on current users role or logged in status
|
58 |
* Restrict WooCommerce shop page and products
|
59 |
* Invisible reCAPTCHA support for both Profile Builder forms as well as default WordPress forms
|
60 |
-
* **Private Website**:
|
61 |
|
62 |
**PROFILE BUILDER PRO**
|
63 |
|
@@ -72,7 +70,7 @@ The [Pro version](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_sourc
|
|
72 |
* Custom Redirects
|
73 |
* Multiple Registration Forms (set up [multiple registration forms](https://www.cozmoslabs.com/docs/profile-builder-2/modules/multiple-registration-forms/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) with different profile fields for certain user roles)
|
74 |
* Multiple Edit Profile Forms
|
75 |
-
* Admin Approval
|
76 |
* Email Customizer (Personalize all emails sent to your users or admins; customize default WordPress registration email)
|
77 |
* Advanced Modules (e.g. custom redirects, user listing, multiple registration forms etc.)
|
78 |
* Access to support and documentation
|
@@ -169,6 +167,12 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
|
|
169 |
12. Role Editor
|
170 |
|
171 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
= 3.2.8 =
|
173 |
* Security improvements
|
174 |
|
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.1
|
7 |
+
Stable tag: 3.2.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
14 |
|
15 |
**[Profile Builder](http://www.cozmoslabs.com/wordpress-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) is the all in one user profile plugin for WordPress.**
|
16 |
|
17 |
+
Easy to use [user profile plugin](https://www.cozmoslabs.com/154636-best-wordpress-user-profile-plugins-compared/) for creating front-end login, user registration and edit profile forms by using shortcodes.
|
18 |
|
19 |
**Restrict Content** based on user role or logged in status. Manage user roles and capabilities using the built in **Role Editor**.
|
20 |
|
21 |
+
[Profile Builder](https://www.cozmoslabs.com/1341-wordpress-profile-builder-a-front-end-user-registration-login-and-edit-profile-plugin/) lets you customize your website by adding a front-end menu for all your users, giving them a more flexible way to modify their user profile or register (front-end user registration).
|
|
|
|
|
22 |
Users with administrator rights can customize basic user fields or add custom user fields to the front-end forms.
|
23 |
|
24 |
To achieve this, simply create a new page and give it an intuitive name(i.e. Edit Profile).
|
38 |
== Profile Builder Features ==
|
39 |
|
40 |
* drag & drop to reorder user profile fields
|
41 |
+
* enable **Email Confirmation** (on registration users will receive a notification to [confirm their email address](https://www.cozmoslabs.com/14722-wordpress-email-confirmation/))
|
42 |
* choose between login with **only Username, Email** or **both**
|
43 |
+
* enforce [WordPress password requirements](https://www.cozmoslabs.com/28998-wordpress-minimum-password-length-strength/) by setting up a **minimum password length** and **minimum password strength** (using the default WordPress password strength meter)
|
44 |
* assign users a specific role at registration (using **[wppb-register role="desired_role"]** shortcode argument for the register form)
|
45 |
* [redirect users](https://www.cozmoslabs.com/46469-redirect-users-after-login-registration-wordpress/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) after login, register and edit-profile using redirect_url shortcode argument ( e.g **[wppb-login redirect_url="www.example.com"]** )
|
46 |
* add register and lost password links below the login form (using **[wppb-login register_url="www.example.com" lostpassword_url="www.example.com"]** shortcode arguments)
|
49 |
* **Admin Bar Settings**: choose which user roles view the admin bar in the front-end
|
50 |
* select which user profile fields are visible in the frontend
|
51 |
* extended functionality available via [Add-ons](http://www.cozmoslabs.com/profile-builder-add-ons/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree)
|
52 |
+
* **Roles Editor**: add, edit, remove or clone [user roles](https://www.cozmoslabs.com/90914-how-to-create-custom-wordpress-user-roles-with-profile-builder/) and capabilities
|
53 |
+
* [reCAPTCHA support](https://www.cozmoslabs.com/40120-adding-recaptcha-wordpress-register-login-lost-password-forms-profile-builder/) for Profile Builder and Wordpress default forms
|
54 |
* **User Role Select** field on register and edit profile forms
|
55 |
* **Content Restriction**: [restrict content](https://www.cozmoslabs.com/105571-restrict-content-user-role-profile-builder/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) based on current users role or logged in status
|
56 |
* Restrict WooCommerce shop page and products
|
57 |
* Invisible reCAPTCHA support for both Profile Builder forms as well as default WordPress forms
|
58 |
+
* **Private Website**: setup a [WordPress private site](https://www.cozmoslabs.com/132715-wordpress-private-site/) that is visible only to members or logged in users
|
59 |
|
60 |
**PROFILE BUILDER PRO**
|
61 |
|
70 |
* Custom Redirects
|
71 |
* Multiple Registration Forms (set up [multiple registration forms](https://www.cozmoslabs.com/docs/profile-builder-2/modules/multiple-registration-forms/?utm_source=wp.org&utm_medium=pb-description-page&utm_campaign=PBFree) with different profile fields for certain user roles)
|
72 |
* Multiple Edit Profile Forms
|
73 |
+
* Admin Approval ([approve new users from dashboard or via email](https://www.cozmoslabs.com/112321-approve-users-from-admin-email-using-profile-builder/))
|
74 |
* Email Customizer (Personalize all emails sent to your users or admins; customize default WordPress registration email)
|
75 |
* Advanced Modules (e.g. custom redirects, user listing, multiple registration forms etc.)
|
76 |
* Access to support and documentation
|
167 |
12. Role Editor
|
168 |
|
169 |
== Changelog ==
|
170 |
+
= 3.2.9 =
|
171 |
+
* Check the reset password key existence before resetting a password. Credit to Shiraz Ali Khan
|
172 |
+
* Changed german translation files
|
173 |
+
* Fixed a incompatibility with Private Website and Buddypress
|
174 |
+
* Fixed a warning that was being thrown when the plugin was installed.
|
175 |
+
|
176 |
= 3.2.8 =
|
177 |
* Security improvements
|
178 |
|
translation/profile-builder-de_DE.mo
CHANGED
Binary file
|
translation/profile-builder-de_DE.po
CHANGED
@@ -2,13 +2,17 @@
|
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator:
|
11 |
"Project-Id-Version: Profile Builder\n"
|
|
|
|
|
|
|
|
|
12 |
|
13 |
#: profile-builder-2.0/admin/general-settings.php:154
|
14 |
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
@@ -119,7 +123,7 @@ msgstr "Rechnungsfelder"
|
|
119 |
|
120 |
#: pb-add-on-woocommerce/index.php:256
|
121 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
122 |
-
msgstr "
|
123 |
|
124 |
#: pb-add-on-woocommerce/index.php:257
|
125 |
msgid "Billing Fields Order"
|
@@ -143,7 +147,7 @@ msgstr "Versand Felder"
|
|
143 |
|
144 |
#: pb-add-on-woocommerce/index.php:275
|
145 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
146 |
-
msgstr "
|
147 |
|
148 |
#: pb-add-on-woocommerce/index.php:276
|
149 |
msgid "Shipping Fields Order"
|
@@ -268,7 +272,7 @@ msgstr "Erlaubte Werte"
|
|
268 |
|
269 |
#: profile-builder-2.0/admin/manage-fields.php:145
|
270 |
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."
|
271 |
-
msgstr "
|
272 |
|
273 |
#: profile-builder-2.0/admin/manage-fields.php:146
|
274 |
msgid "Error Message"
|
@@ -340,7 +344,7 @@ msgstr "Format der Telefonnummer"
|
|
340 |
|
341 |
#: profile-builder-2.0/admin/manage-fields.php:155
|
342 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
343 |
-
msgstr "
|
344 |
|
345 |
#: profile-builder-2.0/admin/manage-fields.php:155
|
346 |
msgid "Eg. (###) ###-####"
|
@@ -903,7 +907,7 @@ msgstr "Bitte füge den Google Maps API Schlüssel für dieses Feld hinzu."
|
|
903 |
|
904 |
#: profile-builder-2.0/front-end/extra-fields/map/map.php:134
|
905 |
msgid "Something went wrong. Please try again."
|
906 |
-
msgstr "Irgendetwas ging schief. Bitte
|
907 |
|
908 |
#: profile-builder-2.0/front-end/extra-fields/number/number.php:69
|
909 |
msgid "Please enter numbers only"
|
@@ -1202,7 +1206,7 @@ msgstr "Felder suchen"
|
|
1202 |
|
1203 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2325
|
1204 |
msgid "Choose the fields in which the Search Field will look in"
|
1205 |
-
msgstr "
|
1206 |
|
1207 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2330
|
1208 |
msgid "Search Settings"
|
@@ -1293,11 +1297,11 @@ msgstr "Standard Registrierungsformular"
|
|
1293 |
|
1294 |
#: pb-add-on-woocommerce/woosync-page.php:103
|
1295 |
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
1296 |
-
msgstr "
|
1297 |
|
1298 |
#: pb-add-on-woocommerce/woosync-page.php:110
|
1299 |
msgid "Choose Edit Profile form to display on My Account page:"
|
1300 |
-
msgstr "
|
1301 |
|
1302 |
#: pb-add-on-woocommerce/woosync-page.php:115
|
1303 |
msgid "Default Edit Profile"
|
@@ -1305,7 +1309,7 @@ msgstr "Standard \"Profil editieren\"-Formular"
|
|
1305 |
|
1306 |
#: pb-add-on-woocommerce/woosync-page.php:137
|
1307 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1308 |
-
msgstr "
|
1309 |
|
1310 |
#: profile-builder-2.0/admin/add-ons.php:190
|
1311 |
msgid "Recommended Plugins"
|
@@ -1342,7 +1346,7 @@ msgstr "Die Erweiterung ist <strong>aktiv</strong>"
|
|
1342 |
#: profile-builder-2.0/admin/add-ons.php:256
|
1343 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:146
|
1344 |
msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1345 |
-
msgstr "Die Erweiterung konnte nicht installiert werden.
|
1346 |
|
1347 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:10
|
1348 |
msgid "Paid Accounts"
|
@@ -1358,15 +1362,15 @@ msgstr "Mit dem neuen Abonnement-Feld im Profile Builder, können sich Benutzer
|
|
1358 |
|
1359 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:40
|
1360 |
msgid "Paid & Free Subscriptions"
|
1361 |
-
msgstr "
|
1362 |
|
1363 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:41
|
1364 |
msgid "Restrict Content"
|
1365 |
-
msgstr "
|
1366 |
|
1367 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:42
|
1368 |
msgid "Member Management"
|
1369 |
-
msgstr "
|
1370 |
|
1371 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:43
|
1372 |
msgid "Email Templates"
|
@@ -1374,15 +1378,15 @@ msgstr "Emailvorlagen"
|
|
1374 |
|
1375 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:44
|
1376 |
msgid "Account Management"
|
1377 |
-
msgstr "
|
1378 |
|
1379 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:45
|
1380 |
msgid "Subscription Management"
|
1381 |
-
msgstr "
|
1382 |
|
1383 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:46
|
1384 |
msgid "Payment Management"
|
1385 |
-
msgstr "
|
1386 |
|
1387 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:83
|
1388 |
msgid "Plugin is Active"
|
@@ -1406,7 +1410,7 @@ msgstr "Schnelle Schritt für Schritt Einrichtung"
|
|
1406 |
|
1407 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
|
1408 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
1409 |
-
msgstr "
|
1410 |
|
1411 |
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
|
1412 |
msgid "After Login"
|
@@ -2882,15 +2886,15 @@ msgstr "Simbabwe"
|
|
2882 |
|
2883 |
#: profile-builder-2.0/admin/manage-fields.php:1219
|
2884 |
msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
2885 |
-
msgstr "Mit Profile Builder Pro v2
|
2886 |
|
2887 |
#: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
|
2888 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
2889 |
-
msgstr "
|
2890 |
|
2891 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:216
|
2892 |
msgid "Your account has been successfully created!"
|
2893 |
-
msgstr "
|
2894 |
|
2895 |
#: profile-builder-2.0/features/functions.php:678
|
2896 |
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
|
@@ -2911,7 +2915,7 @@ msgstr "Dieser Dateityp ist für dieses Feld nicht erlaubt."
|
|
2911 |
|
2912 |
#: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
|
2913 |
msgid "An error occurred, please try again later."
|
2914 |
-
msgstr "Es ist ein Fehler aufgetreten, bitte
|
2915 |
|
2916 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:282
|
2917 |
msgid "More"
|
@@ -2919,11 +2923,11 @@ msgstr "Mehr"
|
|
2919 |
|
2920 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:376
|
2921 |
msgid "You do not have permission to view this user list."
|
2922 |
-
msgstr "
|
2923 |
|
2924 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:389
|
2925 |
msgid "You do not have the required user role to view this user list."
|
2926 |
-
msgstr "
|
2927 |
|
2928 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2253
|
2929 |
msgid "Ascending"
|
@@ -2970,11 +2974,11 @@ msgstr "Der geheime Schlüssel von Google, <a href=\"http://www.google.com/recap
|
|
2970 |
|
2971 |
#: profile-builder-2.0/admin/manage-fields.php:1023
|
2972 |
msgid "You must enter the site key\n"
|
2973 |
-
msgstr "
|
2974 |
|
2975 |
#: profile-builder-2.0/admin/manage-fields.php:1025
|
2976 |
msgid "You must enter the secret key\n"
|
2977 |
-
msgstr "
|
2978 |
|
2979 |
#: profile-builder-2.0/admin/add-ons.php:10
|
2980 |
#: profile-builder-2.0/admin/add-ons.php:32
|
@@ -3074,7 +3078,7 @@ msgstr "Add-On konnte nicht installiert werden. Erneut versuchen oder <a href=\"
|
|
3074 |
|
3075 |
#: profile-builder-2.0/front-end/default-fields/email/email.php:51
|
3076 |
msgid "You must enter a valid email address."
|
3077 |
-
msgstr "
|
3078 |
|
3079 |
#: profile-builder-2.0/front-end/default-fields/username/username.php:52
|
3080 |
#: profile-builder-2.0/front-end/default-fields/username/username.php:60
|
@@ -3187,11 +3191,11 @@ msgstr "Benutzername und E-Mail"
|
|
3187 |
|
3188 |
#: profile-builder-2.0/admin/general-settings.php:184
|
3189 |
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
3190 |
-
msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit
|
3191 |
|
3192 |
#: profile-builder-2.0/admin/general-settings.php:185
|
3193 |
msgid "\"Username\" - users can Log In only with Username."
|
3194 |
-
msgstr "\"Benutzername\" - Benutzer können sich nur mit
|
3195 |
|
3196 |
#: profile-builder-2.0/admin/general-settings.php:186
|
3197 |
msgid "\"Email\" - users can Log In only with Email."
|
@@ -3205,7 +3209,7 @@ msgstr ""
|
|
3205 |
|
3206 |
#: profile-builder-2.0/admin/manage-fields.php:125
|
3207 |
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 (.*)"
|
3208 |
-
msgstr "
|
3209 |
|
3210 |
#: profile-builder-2.0/admin/manage-fields.php:135
|
3211 |
msgid "User Roles"
|
@@ -3225,7 +3229,7 @@ msgstr "Speichere die Reihenfolge der Benutzerrollen-Checkboxen"
|
|
3225 |
|
3226 |
#: profile-builder-2.0/admin/manage-fields.php:1128
|
3227 |
msgid "Please select at least one user role\n"
|
3228 |
-
msgstr "Bitte
|
3229 |
|
3230 |
#: profile-builder-2.0/admin/register-version.php:22
|
3231 |
msgid "Profile Builder Register"
|
@@ -3237,11 +3241,11 @@ msgstr "Die Seriennummer wird bald ablaufen!"
|
|
3237 |
|
3238 |
#: profile-builder-2.0/admin/register-version.php:81
|
3239 |
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
3240 |
-
msgstr "
|
3241 |
|
3242 |
#: profile-builder-2.0/admin/register-version.php:83
|
3243 |
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
3244 |
-
msgstr "
|
3245 |
|
3246 |
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
|
3247 |
msgid "Add Entry"
|
@@ -3253,7 +3257,7 @@ msgstr "anzeigen"
|
|
3253 |
|
3254 |
#: profile-builder-2.0/features/functions.php:736
|
3255 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
|
3256 |
-
msgstr "Damit sich Benutzer auf
|
3257 |
|
3258 |
#: profile-builder-2.0/front-end/class-formbuilder.php:659
|
3259 |
msgid "User to edit:"
|
@@ -3271,7 +3275,7 @@ msgstr "Das Passwort muss eine Mindeststärke von %s haben"
|
|
3271 |
|
3272 |
#: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
|
3273 |
msgid "You cannot register this user role"
|
3274 |
-
msgstr "
|
3275 |
|
3276 |
#: profile-builder-2.0/front-end/login.php:153
|
3277 |
msgid "username or email"
|
@@ -3408,7 +3412,7 @@ msgstr "Es muss eine gültige E-Mail-Adresse oder der Tag {{reply_to}} sein der
|
|
3408 |
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
|
3409 |
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
|
3410 |
msgid "Your selected password at signup"
|
3411 |
-
msgstr "Das von
|
3412 |
|
3413 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
|
3414 |
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
@@ -3557,7 +3561,7 @@ msgstr "Extra-Features"
|
|
3557 |
|
3558 |
#: profile-builder-2.0/admin/basic-info.php:52
|
3559 |
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
3560 |
-
msgstr "Funktionen, die
|
3561 |
|
3562 |
#: profile-builder-2.0/admin/basic-info.php:53
|
3563 |
msgid "Enable extra features"
|
@@ -3573,7 +3577,7 @@ msgstr "Admin-Zulassung (*)"
|
|
3573 |
|
3574 |
#: profile-builder-2.0/admin/basic-info.php:62
|
3575 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
3576 |
-
msgstr "
|
3577 |
|
3578 |
#: profile-builder-2.0/admin/basic-info.php:65
|
3579 |
msgid "Email Confirmation"
|
@@ -3601,7 +3605,7 @@ msgstr "Erlaube Benutzern, sich mit ihrer E-Mail-Adresse oder ihrem Benutzername
|
|
3601 |
|
3602 |
#: profile-builder-2.0/admin/basic-info.php:87
|
3603 |
msgid "Customize Your Forms The Way You Want (*)"
|
3604 |
-
msgstr "
|
3605 |
|
3606 |
#: profile-builder-2.0/admin/basic-info.php:88
|
3607 |
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
@@ -3718,7 +3722,7 @@ msgstr "Mehrfache Anmeldeformulare"
|
|
3718 |
|
3719 |
#: profile-builder-2.0/admin/basic-info.php:155
|
3720 |
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
3721 |
-
msgstr "
|
3722 |
|
3723 |
#: profile-builder-2.0/admin/basic-info.php:158
|
3724 |
#: profile-builder-2.0/modules/modules.php:82
|
@@ -3727,7 +3731,7 @@ msgstr "Mehrfache Profilbearbeitungs-Formulare"
|
|
3727 |
|
3728 |
#: profile-builder-2.0/admin/basic-info.php:159
|
3729 |
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
3730 |
-
msgstr "
|
3731 |
|
3732 |
#: profile-builder-2.0/admin/basic-info.php:187
|
3733 |
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
@@ -3739,7 +3743,7 @@ msgstr "** nur in der %1$sPro Version%2$s verfügbar."
|
|
3739 |
|
3740 |
#: profile-builder-2.0/admin/general-settings.php:39
|
3741 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
3742 |
-
msgstr "
|
3743 |
|
3744 |
#: profile-builder-2.0/admin/general-settings.php:42
|
3745 |
#: profile-builder-2.0/admin/general-settings.php:55
|
@@ -3754,7 +3758,7 @@ msgstr "Ja"
|
|
3754 |
|
3755 |
#: profile-builder-2.0/admin/general-settings.php:44
|
3756 |
msgid "You can find the default file here: %1$s"
|
3757 |
-
msgstr "
|
3758 |
|
3759 |
#: profile-builder-2.0/admin/general-settings.php:51
|
3760 |
msgid "\"Email Confirmation\" Activated:"
|
@@ -3771,7 +3775,7 @@ msgstr "Nein"
|
|
3771 |
|
3772 |
#: profile-builder-2.0/admin/general-settings.php:61
|
3773 |
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
3774 |
-
msgstr "
|
3775 |
|
3776 |
#: profile-builder-2.0/admin/general-settings.php:69
|
3777 |
msgid "\"Email Confirmation\" Landing Page:"
|
@@ -3783,7 +3787,7 @@ msgstr "Vorhandene Seiten"
|
|
3783 |
|
3784 |
#: profile-builder-2.0/admin/general-settings.php:89
|
3785 |
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
3786 |
-
msgstr "
|
3787 |
|
3788 |
#: profile-builder-2.0/admin/general-settings.php:100
|
3789 |
msgid "\"Admin Approval\" Activated:"
|
@@ -3791,7 +3795,7 @@ msgstr "\"Admin Genehmigung\" aktiviert:"
|
|
3791 |
|
3792 |
#: profile-builder-2.0/admin/general-settings.php:108
|
3793 |
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
3794 |
-
msgstr "
|
3795 |
|
3796 |
#: profile-builder-2.0/admin/general-settings.php:165
|
3797 |
msgid "\"Admin Approval\" Feature:"
|
@@ -3799,7 +3803,7 @@ msgstr "\"Admin Genehmigung\" Feature:"
|
|
3799 |
|
3800 |
#: profile-builder-2.0/admin/general-settings.php:168
|
3801 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
3802 |
-
msgstr "
|
3803 |
|
3804 |
#: profile-builder-2.0/admin/general-settings.php:175
|
3805 |
msgid "Allow Users to Log in With:"
|
@@ -3835,7 +3839,7 @@ msgstr "Minimale Kennwortlänge:"
|
|
3835 |
|
3836 |
#: profile-builder-2.0/admin/general-settings.php:198
|
3837 |
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
3838 |
-
msgstr "
|
3839 |
|
3840 |
#: profile-builder-2.0/admin/general-settings.php:205
|
3841 |
msgid "Minimum Password Strength:"
|
@@ -3885,7 +3889,7 @@ msgstr "ID"
|
|
3885 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
|
3886 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
|
3887 |
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
3888 |
-
msgstr "Ein einzigartiges, automatisch generiertes ID für dieses spezielle Feld<br/>
|
3889 |
|
3890 |
#: profile-builder-2.0/admin/manage-fields.php:122
|
3891 |
msgid "Description"
|
@@ -3893,7 +3897,7 @@ msgstr "Beschreibung"
|
|
3893 |
|
3894 |
#: profile-builder-2.0/admin/manage-fields.php:122
|
3895 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
3896 |
-
msgstr "
|
3897 |
|
3898 |
#: profile-builder-2.0/admin/manage-fields.php:123
|
3899 |
msgid "Row Count"
|
@@ -3901,7 +3905,7 @@ msgstr "Zeilenanzahl"
|
|
3901 |
|
3902 |
#: profile-builder-2.0/admin/manage-fields.php:123
|
3903 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
3904 |
-
msgstr "
|
3905 |
|
3906 |
#: profile-builder-2.0/admin/manage-fields.php:124
|
3907 |
msgid "Allowed Image Extensions"
|
@@ -3917,7 +3921,7 @@ msgstr "Profilbild-Größe"
|
|
3917 |
|
3918 |
#: profile-builder-2.0/admin/manage-fields.php:126
|
3919 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
3920 |
-
msgstr "
|
3921 |
|
3922 |
#: profile-builder-2.0/admin/manage-fields.php:127
|
3923 |
msgid "Date-format"
|
@@ -3929,7 +3933,7 @@ msgstr "Nutzungsbedingungen"
|
|
3929 |
|
3930 |
#: profile-builder-2.0/admin/manage-fields.php:128
|
3931 |
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>"
|
3932 |
-
msgstr "
|
3933 |
|
3934 |
#: profile-builder-2.0/admin/manage-fields.php:129
|
3935 |
msgid "Options"
|
@@ -3941,7 +3945,7 @@ msgstr "Beschriftung "
|
|
3941 |
|
3942 |
#: profile-builder-2.0/admin/manage-fields.php:130
|
3943 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
3944 |
-
msgstr "
|
3945 |
|
3946 |
#: profile-builder-2.0/admin/manage-fields.php:137
|
3947 |
msgid "Default Value"
|
@@ -3960,7 +3964,7 @@ msgstr "Standardoption"
|
|
3960 |
|
3961 |
#: profile-builder-2.0/admin/manage-fields.php:138
|
3962 |
msgid "Specify the option which should be selected by default"
|
3963 |
-
msgstr "
|
3964 |
|
3965 |
#: profile-builder-2.0/admin/manage-fields.php:139
|
3966 |
msgid "Default Option(s)"
|
@@ -3968,7 +3972,7 @@ msgstr "Standard-Option(en)"
|
|
3968 |
|
3969 |
#: profile-builder-2.0/admin/manage-fields.php:139
|
3970 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
3971 |
-
msgstr "
|
3972 |
|
3973 |
#: profile-builder-2.0/admin/manage-fields.php:153
|
3974 |
msgid "Default Content"
|
@@ -4102,11 +4106,11 @@ msgstr "Bitte gib dein Kennwort erneut ein."
|
|
4102 |
#: profile-builder-2.0/admin/manage-fields.php:980
|
4103 |
#: profile-builder-2.0/admin/manage-fields.php:1137
|
4104 |
msgid "You must select a field\n"
|
4105 |
-
msgstr "
|
4106 |
|
4107 |
#: profile-builder-2.0/admin/manage-fields.php:990
|
4108 |
msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4109 |
-
msgstr "Bitte
|
4110 |
|
4111 |
#: profile-builder-2.0/admin/manage-fields.php:1001
|
4112 |
msgid "The entered avatar size is not between 20 and 200\n"
|
@@ -4122,7 +4126,7 @@ msgstr "Die eingegebene Nummer der Zeile ist nicht numerisch\n"
|
|
4122 |
|
4123 |
#: profile-builder-2.0/admin/manage-fields.php:1015
|
4124 |
msgid "You must enter a value for the row number\n"
|
4125 |
-
msgstr "
|
4126 |
|
4127 |
#: profile-builder-2.0/admin/manage-fields.php:1036
|
4128 |
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
@@ -4130,7 +4134,7 @@ msgstr "Der eingegebene Wert für den Datums-picker ist kein gültiges Datumsfor
|
|
4130 |
|
4131 |
#: profile-builder-2.0/admin/manage-fields.php:1039
|
4132 |
msgid "You must enter a value for the date-format\n"
|
4133 |
-
msgstr "
|
4134 |
|
4135 |
#: profile-builder-2.0/admin/manage-fields.php:1067
|
4136 |
#: profile-builder-2.0/admin/manage-fields.php:1075
|
@@ -4186,11 +4190,11 @@ msgstr "Löschen"
|
|
4186 |
|
4187 |
#: profile-builder-2.0/admin/manage-fields.php:1208
|
4188 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4189 |
-
msgstr "
|
4190 |
|
4191 |
#: profile-builder-2.0/admin/register-version.php:14
|
4192 |
msgid "Register Your Version"
|
4193 |
-
msgstr "
|
4194 |
|
4195 |
#: profile-builder-2.0/admin/register-version.php:14
|
4196 |
msgid "Register Version"
|
@@ -4198,7 +4202,7 @@ msgstr "Version registrieren"
|
|
4198 |
|
4199 |
#: profile-builder-2.0/admin/register-version.php:70
|
4200 |
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
4201 |
-
msgstr "Wenn
|
4202 |
|
4203 |
#: profile-builder-2.0/admin/register-version.php:72
|
4204 |
msgid " Serial Number:"
|
@@ -4318,7 +4322,7 @@ msgstr "Möchtest du"
|
|
4318 |
|
4319 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:51
|
4320 |
msgid "Your session has expired! Please refresh the page and try again"
|
4321 |
-
msgstr "
|
4322 |
|
4323 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:64
|
4324 |
msgid "User successfully approved!"
|
@@ -4336,11 +4340,11 @@ msgstr "Benutzer erfolgreich gelöscht!"
|
|
4336 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:131
|
4337 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
|
4338 |
msgid "You either don't have permission for that action or there was an error!"
|
4339 |
-
msgstr "
|
4340 |
|
4341 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:96
|
4342 |
msgid "Your session has expired! Please refresh the page and try again."
|
4343 |
-
msgstr "
|
4344 |
|
4345 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:109
|
4346 |
msgid "Users successfully approved!"
|
@@ -4356,7 +4360,7 @@ msgstr "Benutzer wurden erfolgreich gelöscht!"
|
|
4356 |
|
4357 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:147
|
4358 |
msgid "Your account on %1$s has been approved!"
|
4359 |
-
msgstr "
|
4360 |
|
4361 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:148
|
4362 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:151
|
@@ -4369,7 +4373,7 @@ msgstr "Ein Administrator hat gerade Ihr Konto auf %1$s (%2$s) genehmigt."
|
|
4369 |
|
4370 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:155
|
4371 |
msgid "Your account on %1$s has been unapproved!"
|
4372 |
-
msgstr "
|
4373 |
|
4374 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:156
|
4375 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:159
|
@@ -4378,15 +4382,15 @@ msgstr "abgelehnt"
|
|
4378 |
|
4379 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:158
|
4380 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
4381 |
-
msgstr "Ein Administrator hat
|
4382 |
|
4383 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:177
|
4384 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
4385 |
-
msgstr "<strong>Fehler</strong>:
|
4386 |
|
4387 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:189
|
4388 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
4389 |
-
msgstr "
|
4390 |
|
4391 |
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
|
4392 |
msgid "delete this user?"
|
@@ -4557,11 +4561,11 @@ msgstr "Das \"Admin Approval\" Feature war zum Zeitpunkt der Registrierung aktiv
|
|
4557 |
|
4558 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
|
4559 |
msgid "[%1$s] Your new account information"
|
4560 |
-
msgstr "[%1$s]
|
4561 |
|
4562 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
|
4563 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
4564 |
-
msgstr "Willkommen bei %1$s! <br/> <br/> <br/>
|
4565 |
|
4566 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
|
4567 |
#: profile-builder-2.0/front-end/register.php:125
|
@@ -4629,7 +4633,7 @@ msgstr "Ausloggen"
|
|
4629 |
|
4630 |
#: profile-builder-2.0/front-end/class-formbuilder.php:175
|
4631 |
msgid "You must be logged in to edit your profile."
|
4632 |
-
msgstr "
|
4633 |
|
4634 |
#: profile-builder-2.0/features/functions.php:994
|
4635 |
msgid "here"
|
@@ -4637,7 +4641,7 @@ msgstr "hier"
|
|
4637 |
|
4638 |
#: profile-builder-2.0/features/functions.php:995
|
4639 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4640 |
-
msgstr "Sie
|
4641 |
|
4642 |
#: profile-builder-2.0/front-end/class-formbuilder.php:315
|
4643 |
#: profile-builder-2.0/front-end/class-formbuilder.php:322
|
@@ -4655,7 +4659,7 @@ msgstr "Bevor du auf dein Konto %1S zugreifen kannst, muss es von einem Administ
|
|
4655 |
|
4656 |
#: profile-builder-2.0/front-end/class-formbuilder.php:347
|
4657 |
msgid "Your profile has been successfully updated!"
|
4658 |
-
msgstr "
|
4659 |
|
4660 |
#: profile-builder-2.0/front-end/class-formbuilder.php:358
|
4661 |
msgid "There was an error in the submitted form"
|
@@ -4672,7 +4676,7 @@ msgstr "Aktualisieren"
|
|
4672 |
|
4673 |
#: profile-builder-2.0/front-end/class-formbuilder.php:481
|
4674 |
msgid "Send these credentials via email."
|
4675 |
-
msgstr "
|
4676 |
|
4677 |
#: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
|
4678 |
#: profile-builder-2.0/front-end/login.php:137
|
@@ -4716,7 +4720,7 @@ msgstr "Ausloggen"
|
|
4716 |
|
4717 |
#: profile-builder-2.0/front-end/recover.php:17
|
4718 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
4719 |
-
msgstr "
|
4720 |
|
4721 |
#: profile-builder-2.0/front-end/recover.php:94
|
4722 |
msgid "Reset Password"
|
@@ -4728,7 +4732,7 @@ msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail Adresse ein."
|
|
4728 |
|
4729 |
#: profile-builder-2.0/front-end/recover.php:125
|
4730 |
msgid "You will receive a link to create a new password via email."
|
4731 |
-
msgstr "
|
4732 |
|
4733 |
#: profile-builder-2.0/front-end/recover.php:122
|
4734 |
msgid "Username or E-mail"
|
@@ -4752,7 +4756,7 @@ msgstr "Überprüfe dein E-Mail Postfach für den Bestätigungslink."
|
|
4752 |
|
4753 |
#: profile-builder-2.0/front-end/recover.php:235
|
4754 |
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
4755 |
-
msgstr "Jemand hat angefragt, dass das Passwort für dieses Konto zurückgesetzt werden soll: <b>%1$s</b> <br/> Wenn diese Anfrage nicht von
|
4756 |
|
4757 |
#: profile-builder-2.0/front-end/recover.php:238
|
4758 |
msgid "Password Reset from \"%1$s\""
|
@@ -4772,11 +4776,11 @@ msgstr "Bitte prüfe, ob du die richtige E-Mail Adresse angegeben hast."
|
|
4772 |
|
4773 |
#: profile-builder-2.0/front-end/recover.php:273
|
4774 |
msgid "Your password has been successfully changed!"
|
4775 |
-
msgstr "
|
4776 |
|
4777 |
#: profile-builder-2.0/front-end/recover.php:292
|
4778 |
msgid "You have successfully reset your password to: %1$s"
|
4779 |
-
msgstr "
|
4780 |
|
4781 |
#: profile-builder-2.0/front-end/recover.php:295
|
4782 |
#: profile-builder-2.0/front-end/recover.php:306
|
@@ -4785,7 +4789,7 @@ msgstr "Kennwort erfolgreich zurückgesetzt für %1$s auf \"%2$s\""
|
|
4785 |
|
4786 |
#: profile-builder-2.0/front-end/recover.php:303
|
4787 |
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
4788 |
-
msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert. <br/>
|
4789 |
|
4790 |
#: profile-builder-2.0/front-end/recover.php:320
|
4791 |
msgid "The entered passwords don't match!"
|
@@ -4899,7 +4903,7 @@ msgstr "Module"
|
|
4899 |
|
4900 |
#: profile-builder-2.0/modules/modules.php:59
|
4901 |
msgid "Here you can activate / deactivate available modules for Profile Builder."
|
4902 |
-
msgstr "Hier
|
4903 |
|
4904 |
#: profile-builder-2.0/modules/modules.php:69
|
4905 |
msgid "Name/Description"
|
@@ -5019,7 +5023,7 @@ msgstr ""
|
|
5019 |
"<p>Benutzername: {{username}}</p> \n"
|
5020 |
"<p>E-Mail :{{user_email}}</p> \n"
|
5021 |
"<p>Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n"
|
5022 |
-
"Also bitte
|
5023 |
|
5024 |
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
|
5025 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
|
@@ -5071,7 +5075,7 @@ msgid ""
|
|
5071 |
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
5072 |
msgstr ""
|
5073 |
"\n"
|
5074 |
-
"<h3>Willkommen bei {{Site_name}}!</h3> <p>
|
5075 |
|
5076 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
|
5077 |
msgid "Default Registration"
|
@@ -5106,8 +5110,8 @@ msgid ""
|
|
5106 |
msgstr ""
|
5107 |
"\n"
|
5108 |
"<h3>Willkommen bei {{site_name}}!</h3>\n"
|
5109 |
-
"<p>
|
5110 |
-
"<p>Bevor
|
5111 |
|
5112 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
|
5113 |
msgid "A new account has been created for you on {{site_name}}"
|
@@ -5121,11 +5125,11 @@ msgid ""
|
|
5121 |
msgstr ""
|
5122 |
"\n"
|
5123 |
"<h3>Herzlich Willkommen!</h3>\n"
|
5124 |
-
"<p>Der Administrator hat
|
5125 |
|
5126 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
|
5127 |
msgid "Your account on {{site_name}} has been approved!"
|
5128 |
-
msgstr "
|
5129 |
|
5130 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
|
5131 |
msgid "User Approval Notification"
|
@@ -5139,11 +5143,11 @@ msgid ""
|
|
5139 |
msgstr ""
|
5140 |
"\n"
|
5141 |
"<h3>Lieber Benutzer,</h3>\n"
|
5142 |
-
"<p>leider hat der Administrator
|
5143 |
|
5144 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
|
5145 |
msgid "Your account on {{site_name}} has been unapproved!"
|
5146 |
-
msgstr "
|
5147 |
|
5148 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
|
5149 |
msgid "Unapproved User Notification"
|
@@ -5209,13 +5213,13 @@ msgstr "(kein Titel)"
|
|
5209 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
|
5210 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2156
|
5211 |
msgid "The shortcode will be available after you publish this form."
|
5212 |
-
msgstr "Der Shortcode wird verfügbar sein, nachdem
|
5213 |
|
5214 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
|
5215 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
|
5216 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2158
|
5217 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5218 |
-
msgstr "
|
5219 |
|
5220 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
|
5221 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
|
@@ -5246,7 +5250,7 @@ msgstr "Erlaubte Zeit (in Sekunden) um Erfolgsmeldungen anzuzeigen"
|
|
5246 |
|
5247 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
|
5248 |
msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
|
5249 |
-
msgstr "
|
5250 |
|
5251 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
|
5252 |
msgid "After Profile Update..."
|
@@ -5260,7 +5264,7 @@ msgstr "Neues Feld zur Liste hinzufügen"
|
|
5260 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
|
5261 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
5262 |
msgid "Choose one of the supported fields you manage <a href=\""
|
5263 |
-
msgstr "
|
5264 |
|
5265 |
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
5266 |
msgid "<pre>Title (Type)</pre>"
|
@@ -5268,7 +5272,7 @@ msgstr "<pre>Titel (Type)</pre>"
|
|
5268 |
|
5269 |
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
|
5270 |
msgid "You need to specify the title of the form before creating it"
|
5271 |
-
msgstr "
|
5272 |
|
5273 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
|
5274 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
|
@@ -5495,7 +5499,7 @@ msgstr "Ende »»"
|
|
5495 |
|
5496 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:1504
|
5497 |
msgid "You don't have any pagination settings on this userlisting!"
|
5498 |
-
msgstr "
|
5499 |
|
5500 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:1970
|
5501 |
msgid "Search"
|
@@ -5532,7 +5536,7 @@ msgstr "Rollen anzeigen"
|
|
5532 |
|
5533 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2262
|
5534 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5535 |
-
msgstr "
|
5536 |
|
5537 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2263
|
5538 |
msgid "Number of Users/Page"
|
@@ -5560,7 +5564,7 @@ msgstr "Profilbild-Größe (alle Benutzereinträge)"
|
|
5560 |
|
5561 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2266
|
5562 |
msgid "Set the avatar size on the all-userlisting only"
|
5563 |
-
msgstr "
|
5564 |
|
5565 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2267
|
5566 |
msgid "Avatar Size (Single-userlisting)"
|
@@ -5568,7 +5572,7 @@ msgstr "Profilbild-Größe (Einzel-Benutzeranzeige)"
|
|
5568 |
|
5569 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2267
|
5570 |
msgid "Set the avatar size on the single-userlisting only"
|
5571 |
-
msgstr "
|
5572 |
|
5573 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2268
|
5574 |
msgid "Visible only to logged in users?"
|
@@ -5592,12 +5596,13 @@ msgstr "Einstellungen für Benutzerliste"
|
|
5592 |
|
5593 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2402
|
5594 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
5595 |
-
msgstr "
|
5596 |
|
5597 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2402
|
5598 |
msgid "You can find it in the Profile Builder menu."
|
5599 |
-
msgstr "
|
5600 |
|
5601 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2565
|
5602 |
msgid "No results found!"
|
5603 |
-
msgstr "Es wurden keine Ergebnisse gefunden!"
|
|
2 |
# This file is distributed under the same license as the Profile Builder package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-09-26 23:25+0200\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: Poedit 2.4.1\n"
|
11 |
"Project-Id-Version: Profile Builder\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: \n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
"Language: de_DE\n"
|
16 |
|
17 |
#: profile-builder-2.0/admin/general-settings.php:154
|
18 |
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
123 |
|
124 |
#: pb-add-on-woocommerce/index.php:256
|
125 |
msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
|
126 |
+
msgstr "Wähle, welche WooCommerce Rechnungs-Felder für den Benutzer (Drag & Drop für eine neue Reihenfolge) anzuzeigen und erforderlich sein sollten"
|
127 |
|
128 |
#: pb-add-on-woocommerce/index.php:257
|
129 |
msgid "Billing Fields Order"
|
147 |
|
148 |
#: pb-add-on-woocommerce/index.php:275
|
149 |
msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
|
150 |
+
msgstr "Wähle, welche WooCommerce Versand-Felder für den Benutzer (Drag & Drop für eine neue Reihenfolge) anzuzeigen und erforderlich sein sollten"
|
151 |
|
152 |
#: pb-add-on-woocommerce/index.php:276
|
153 |
msgid "Shipping Fields Order"
|
272 |
|
273 |
#: profile-builder-2.0/admin/manage-fields.php:145
|
274 |
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."
|
275 |
+
msgstr "Gib eine mit Kommas getrennte Liste von zulässigen Werten an. Nur wenn der Nutzer bei der Registrierung einen dieser Werte angibt wird die Registrierung durchgeführt."
|
276 |
|
277 |
#: profile-builder-2.0/admin/manage-fields.php:146
|
278 |
msgid "Error Message"
|
344 |
|
345 |
#: profile-builder-2.0/admin/manage-fields.php:155
|
346 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
347 |
+
msgstr "Du kannst folgendes nutzen: # für Nummern, Klammern ( ), - Zeichen, + Zeichen, Punkt . und Leerzeichen."
|
348 |
|
349 |
#: profile-builder-2.0/admin/manage-fields.php:155
|
350 |
msgid "Eg. (###) ###-####"
|
907 |
|
908 |
#: profile-builder-2.0/front-end/extra-fields/map/map.php:134
|
909 |
msgid "Something went wrong. Please try again."
|
910 |
+
msgstr "Irgendetwas ging schief. Bitte versuche es erneut."
|
911 |
|
912 |
#: profile-builder-2.0/front-end/extra-fields/number/number.php:69
|
913 |
msgid "Please enter numbers only"
|
1206 |
|
1207 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2325
|
1208 |
msgid "Choose the fields in which the Search Field will look in"
|
1209 |
+
msgstr "Wähle die Felder, in denen das Suchfeld nachschauen wird"
|
1210 |
|
1211 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2330
|
1212 |
msgid "Search Settings"
|
1297 |
|
1298 |
#: pb-add-on-woocommerce/woosync-page.php:103
|
1299 |
msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
|
1300 |
+
msgstr "Wähle das Registrierungsformular, welches im Kundenkonto (My Account) angezeigt werden soll.<br/> Dadurch wird auch das Profile Builder Loginformular im Kundenkonto angezeigt."
|
1301 |
|
1302 |
#: pb-add-on-woocommerce/woosync-page.php:110
|
1303 |
msgid "Choose Edit Profile form to display on My Account page:"
|
1304 |
+
msgstr "Wähle das \"Profil editieren\"-Formular, welches im Kundenkonto (My Account) angezeigt werden soll:"
|
1305 |
|
1306 |
#: pb-add-on-woocommerce/woosync-page.php:115
|
1307 |
msgid "Default Edit Profile"
|
1309 |
|
1310 |
#: pb-add-on-woocommerce/woosync-page.php:137
|
1311 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1312 |
+
msgstr "Wähle das \"Profil editieren\"-Formular aus Profile Builder, das im Kundenkonto (My Account) von WooCommerce angezeigt werden soll:"
|
1313 |
|
1314 |
#: profile-builder-2.0/admin/add-ons.php:190
|
1315 |
msgid "Recommended Plugins"
|
1346 |
#: profile-builder-2.0/admin/add-ons.php:256
|
1347 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:146
|
1348 |
msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1349 |
+
msgstr "Die Erweiterung konnte nicht installiert werden. Versuche es noch einmal oder <a href=\"%s\" target=\"_blank\">installiere die Erweiterung manuell</a>."
|
1350 |
|
1351 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:10
|
1352 |
msgid "Paid Accounts"
|
1362 |
|
1363 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:40
|
1364 |
msgid "Paid & Free Subscriptions"
|
1365 |
+
msgstr "Bezahlte und kostenfreie Abos"
|
1366 |
|
1367 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:41
|
1368 |
msgid "Restrict Content"
|
1369 |
+
msgstr "Inhalt einschränken"
|
1370 |
|
1371 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:42
|
1372 |
msgid "Member Management"
|
1373 |
+
msgstr "Mitgliederverwaltung"
|
1374 |
|
1375 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:43
|
1376 |
msgid "Email Templates"
|
1378 |
|
1379 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:44
|
1380 |
msgid "Account Management"
|
1381 |
+
msgstr "Kontoverwaltung"
|
1382 |
|
1383 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:45
|
1384 |
msgid "Subscription Management"
|
1385 |
+
msgstr "Aboverwaltung"
|
1386 |
|
1387 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:46
|
1388 |
msgid "Payment Management"
|
1389 |
+
msgstr "Zahlungsverwaltung"
|
1390 |
|
1391 |
#: profile-builder-2.0/admin/pms-cross-promotion.php:83
|
1392 |
msgid "Plugin is Active"
|
1410 |
|
1411 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
|
1412 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
1413 |
+
msgstr "Klicke bitte hier, um dein Benutzerkonto zu aktivieren:<br><br>%s%s%s<br><br>Im Anschluss erhältst du eine weitere Email mit deinen Logindaten."
|
1414 |
|
1415 |
#: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
|
1416 |
msgid "After Login"
|
2886 |
|
2887 |
#: profile-builder-2.0/admin/manage-fields.php:1219
|
2888 |
msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
|
2889 |
+
msgstr "Mit Profile Builder Pro v2 kannst du verschiedene Felder im Registrierungs- und Profilformular anzeigen. Nutze dazu das Modul Multiple Registration & Edit Profile Forms."
|
2890 |
|
2891 |
#: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
|
2892 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
2893 |
+
msgstr "Dein Benutzerkonto muss von einem Administrator bestätigt werden, bevor du dich einloggen kannst."
|
2894 |
|
2895 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:216
|
2896 |
msgid "Your account has been successfully created!"
|
2897 |
+
msgstr "Dein Benutzerkonto wurde erfolgreich angelegt!"
|
2898 |
|
2899 |
#: profile-builder-2.0/features/functions.php:678
|
2900 |
#: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
|
2915 |
|
2916 |
#: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
|
2917 |
msgid "An error occurred, please try again later."
|
2918 |
+
msgstr "Es ist ein Fehler aufgetreten, bitte versuche es später noch einmal."
|
2919 |
|
2920 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:282
|
2921 |
msgid "More"
|
2923 |
|
2924 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:376
|
2925 |
msgid "You do not have permission to view this user list."
|
2926 |
+
msgstr "Du hast keine Berechtigung, um diese Benutzerliste einzusehen."
|
2927 |
|
2928 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:389
|
2929 |
msgid "You do not have the required user role to view this user list."
|
2930 |
+
msgstr "Du hast nicht die notwendige Benutzerrolle, um diese Benutzerliste einzusehen."
|
2931 |
|
2932 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2253
|
2933 |
msgid "Ascending"
|
2974 |
|
2975 |
#: profile-builder-2.0/admin/manage-fields.php:1023
|
2976 |
msgid "You must enter the site key\n"
|
2977 |
+
msgstr "Du musst den Seiten Schlüssel eingeben\n"
|
2978 |
|
2979 |
#: profile-builder-2.0/admin/manage-fields.php:1025
|
2980 |
msgid "You must enter the secret key\n"
|
2981 |
+
msgstr "Du musst den geheimen Schlüssel eingeben\n"
|
2982 |
|
2983 |
#: profile-builder-2.0/admin/add-ons.php:10
|
2984 |
#: profile-builder-2.0/admin/add-ons.php:32
|
3078 |
|
3079 |
#: profile-builder-2.0/front-end/default-fields/email/email.php:51
|
3080 |
msgid "You must enter a valid email address."
|
3081 |
+
msgstr "Du musst eine gültige E-Mail Adresse angeben."
|
3082 |
|
3083 |
#: profile-builder-2.0/front-end/default-fields/username/username.php:52
|
3084 |
#: profile-builder-2.0/front-end/default-fields/username/username.php:60
|
3191 |
|
3192 |
#: profile-builder-2.0/admin/general-settings.php:184
|
3193 |
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
3194 |
+
msgstr "\"Benutzername und E-Mail\" - Benutzer können sich mit ihrem Benutzernamen und E-Mail-Adresse anmelden."
|
3195 |
|
3196 |
#: profile-builder-2.0/admin/general-settings.php:185
|
3197 |
msgid "\"Username\" - users can Log In only with Username."
|
3198 |
+
msgstr "\"Benutzername\" - Benutzer können sich nur mit ihrem Benutzernamen anmelden"
|
3199 |
|
3200 |
#: profile-builder-2.0/admin/general-settings.php:186
|
3201 |
msgid "\"Email\" - users can Log In only with Email."
|
3209 |
|
3210 |
#: profile-builder-2.0/admin/manage-fields.php:125
|
3211 |
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 (.*)"
|
3212 |
+
msgstr "Gib die Datei-Erweiterung(en) ein, die Sie für den Upload erlauben möchten<br/> z. B.: .ext1,.ext2,.ext3<br/>Bei keiner Eingabe werden alle von WordPress erlaubten Datei-Erweiterungen gesetzt: (.*)"
|
3213 |
|
3214 |
#: profile-builder-2.0/admin/manage-fields.php:135
|
3215 |
msgid "User Roles"
|
3229 |
|
3230 |
#: profile-builder-2.0/admin/manage-fields.php:1128
|
3231 |
msgid "Please select at least one user role\n"
|
3232 |
+
msgstr "Bitte wähle mindestens eine Benutzerrolle\n"
|
3233 |
|
3234 |
#: profile-builder-2.0/admin/register-version.php:22
|
3235 |
msgid "Profile Builder Register"
|
3241 |
|
3242 |
#: profile-builder-2.0/admin/register-version.php:81
|
3243 |
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
3244 |
+
msgstr "Deine Seriennummer wird bald ablaufen, bitte %1$ erneuere deine Lizenz%2$s."
|
3245 |
|
3246 |
#: profile-builder-2.0/admin/register-version.php:83
|
3247 |
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
3248 |
+
msgstr "Deine Seriennummer ist abgelaufen, bitte %1$serneuern Sie Ihre Lizenz%2$s."
|
3249 |
|
3250 |
#: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
|
3251 |
msgid "Add Entry"
|
3257 |
|
3258 |
#: profile-builder-2.0/features/functions.php:736
|
3259 |
msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
|
3260 |
+
msgstr "Damit sich Benutzer auf deiner Website über Profile Builder registrieren können, musst du zunächst die Benutzerregistrierung ermöglichen. Gehe dazu nach %1$sEinstellungen -> Allgemein%2$s und stelle unter unter Mitgliedschaft sicher, dass das Kontrollkästchen \"Jeder kann sich registrieren\" angekreuzt ist . %3$sVerwerfen%4$s"
|
3261 |
|
3262 |
#: profile-builder-2.0/front-end/class-formbuilder.php:659
|
3263 |
msgid "User to edit:"
|
3275 |
|
3276 |
#: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
|
3277 |
msgid "You cannot register this user role"
|
3278 |
+
msgstr "Du kannst diese Benutzerrolle nicht registrieren"
|
3279 |
|
3280 |
#: profile-builder-2.0/front-end/login.php:153
|
3281 |
msgid "username or email"
|
3412 |
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
|
3413 |
#: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
|
3414 |
msgid "Your selected password at signup"
|
3415 |
+
msgstr "Das von dir gewählte Anmeldepasswort"
|
3416 |
|
3417 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
|
3418 |
msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
|
3561 |
|
3562 |
#: profile-builder-2.0/admin/basic-info.php:52
|
3563 |
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
3564 |
+
msgstr "Funktionen, die dir mehr Kontrolle über Ihre Benutzer und erhöhte Sicherheit bietet und gegen Registrierungs-Spam von Nutzern hilft."
|
3565 |
|
3566 |
#: profile-builder-2.0/admin/basic-info.php:53
|
3567 |
msgid "Enable extra features"
|
3577 |
|
3578 |
#: profile-builder-2.0/admin/basic-info.php:62
|
3579 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
3580 |
+
msgstr "Du entscheidest, wer als Benutzer auf deiner Website freigeschaltet wird. Du kannst Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen."
|
3581 |
|
3582 |
#: profile-builder-2.0/admin/basic-info.php:65
|
3583 |
msgid "Email Confirmation"
|
3605 |
|
3606 |
#: profile-builder-2.0/admin/basic-info.php:87
|
3607 |
msgid "Customize Your Forms The Way You Want (*)"
|
3608 |
+
msgstr "Passe die Formulare an, wie du willst (*)"
|
3609 |
|
3610 |
#: profile-builder-2.0/admin/basic-info.php:88
|
3611 |
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
3722 |
|
3723 |
#: profile-builder-2.0/admin/basic-info.php:155
|
3724 |
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
3725 |
+
msgstr "Richte mehrere Anmeldeformulare mit verschiedenen Feldern für bestimmte Benutzerrollen ein. Erfasse verschiedene Informationen von verschiedenen Arten von Benutzern."
|
3726 |
|
3727 |
#: profile-builder-2.0/admin/basic-info.php:158
|
3728 |
#: profile-builder-2.0/modules/modules.php:82
|
3731 |
|
3732 |
#: profile-builder-2.0/admin/basic-info.php:159
|
3733 |
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
3734 |
+
msgstr "Ermögliche verschiedenen Benutzerrollen, ihre spezifischen Informationen zu bearbeiten. Errichte mehrere Profil Bearbeitungs-Formulare mit verschiedenen Felder für bestimmte Benutzerrollen."
|
3735 |
|
3736 |
#: profile-builder-2.0/admin/basic-info.php:187
|
3737 |
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
3743 |
|
3744 |
#: profile-builder-2.0/admin/general-settings.php:39
|
3745 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
3746 |
+
msgstr "Lade die CSS-Datei vom Profil-Generator in die Front-End hoch"
|
3747 |
|
3748 |
#: profile-builder-2.0/admin/general-settings.php:42
|
3749 |
#: profile-builder-2.0/admin/general-settings.php:55
|
3758 |
|
3759 |
#: profile-builder-2.0/admin/general-settings.php:44
|
3760 |
msgid "You can find the default file here: %1$s"
|
3761 |
+
msgstr "Du findest die Standard-Datei hier:%1$s"
|
3762 |
|
3763 |
#: profile-builder-2.0/admin/general-settings.php:51
|
3764 |
msgid "\"Email Confirmation\" Activated:"
|
3775 |
|
3776 |
#: profile-builder-2.0/admin/general-settings.php:61
|
3777 |
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
3778 |
+
msgstr "Du kannst eine Liste der unbestätigten Emailadressen unter %1$sUsers > alle Benutzer > E-Mail Bestätigung%2$s finden."
|
3779 |
|
3780 |
#: profile-builder-2.0/admin/general-settings.php:69
|
3781 |
msgid "\"Email Confirmation\" Landing Page:"
|
3787 |
|
3788 |
#: profile-builder-2.0/admin/general-settings.php:89
|
3789 |
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
3790 |
+
msgstr "Gib die Seite ein, wo der Benutzer umgeleitet werden sollte, wenn er sein E-Mail-Konto bestätigt. Diese Seite kann von der Registerungs- Seite(n) unterschiedlich sein und kann jederzeit geändert werden. Wenn nichts ausgewähltw wird, wird eine einfache Bestätigungsseite für den Benutzer angezeigt."
|
3791 |
|
3792 |
#: profile-builder-2.0/admin/general-settings.php:100
|
3793 |
msgid "\"Admin Approval\" Activated:"
|
3795 |
|
3796 |
#: profile-builder-2.0/admin/general-settings.php:108
|
3797 |
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
3798 |
+
msgstr "Du kannst eine Liste mit allen Benutzer unter %1$sUsers > alle Benutzer > Admin Genehmigung%2$s finden."
|
3799 |
|
3800 |
#: profile-builder-2.0/admin/general-settings.php:165
|
3801 |
msgid "\"Admin Approval\" Feature:"
|
3803 |
|
3804 |
#: profile-builder-2.0/admin/general-settings.php:168
|
3805 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
3806 |
+
msgstr "Du entscheidest, wer als Benutzer auf Ihrer Website freigeschaltet wird. Du kannst Benachrichtigungen per E-Mail erhalten oder mehrere Benutzer gleichzeitig über das WordPress-UI genehmigen. Aktiviere die Admin-Genehmigung mit einem Upgrade auf %1$s die Hobbyist oder PRO Version %2$s."
|
3807 |
|
3808 |
#: profile-builder-2.0/admin/general-settings.php:175
|
3809 |
msgid "Allow Users to Log in With:"
|
3839 |
|
3840 |
#: profile-builder-2.0/admin/general-settings.php:198
|
3841 |
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
3842 |
+
msgstr "Gib die minimalen Zeichen ein, die das Kennwort haben sollten. Lasse es leer für keine Untergrenze"
|
3843 |
|
3844 |
#: profile-builder-2.0/admin/general-settings.php:205
|
3845 |
msgid "Minimum Password Strength:"
|
3889 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
|
3890 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
|
3891 |
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
3892 |
+
msgstr "Ein einzigartiges, automatisch generiertes ID für dieses spezielle Feld<br/> Du kannst dies in Verbindung mit Kriterien verwenden, um dieses Element bei Bedarf aufzuziehlen<br/> Nicht editierbar"
|
3893 |
|
3894 |
#: profile-builder-2.0/admin/manage-fields.php:122
|
3895 |
msgid "Description"
|
3897 |
|
3898 |
#: profile-builder-2.0/admin/manage-fields.php:122
|
3899 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
3900 |
+
msgstr "Gib eine (ausführliche) Beschreibung der Option ein die die Endbenutzer lesen können <br/> Optional"
|
3901 |
|
3902 |
#: profile-builder-2.0/admin/manage-fields.php:123
|
3903 |
msgid "Row Count"
|
3905 |
|
3906 |
#: profile-builder-2.0/admin/manage-fields.php:123
|
3907 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
3908 |
+
msgstr "Gib die Anzahl der Zeilen für ein Text-Feld ein <br/> Wenn nicht angegeben, wird dieser standardmäßig auf 5 gesetzt."
|
3909 |
|
3910 |
#: profile-builder-2.0/admin/manage-fields.php:124
|
3911 |
msgid "Allowed Image Extensions"
|
3921 |
|
3922 |
#: profile-builder-2.0/admin/manage-fields.php:126
|
3923 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
3924 |
+
msgstr "Gib einen Wert (zwischen 20 und 200) für die Größe des 'Profilbilds' ein.<br/>Falls nicht angegeben, wird er standardmäßig auf 100 gesetzt"
|
3925 |
|
3926 |
#: profile-builder-2.0/admin/manage-fields.php:127
|
3927 |
msgid "Date-format"
|
3933 |
|
3934 |
#: profile-builder-2.0/admin/manage-fields.php:128
|
3935 |
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>"
|
3936 |
+
msgstr "Gib eine detaillierte Beschreibung der Bedingungen der Vereinbarung für den Benutzer zu lesen ein. <br/>Links können mit standard-HTML-Syntax eingefügt werden: < a href =\"custom_url\">custom_text </a>"
|
3937 |
|
3938 |
#: profile-builder-2.0/admin/manage-fields.php:129
|
3939 |
msgid "Options"
|
3945 |
|
3946 |
#: profile-builder-2.0/admin/manage-fields.php:130
|
3947 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
3948 |
+
msgstr "Gib eine durch Kommas getrennte Liste der Beschriftungen ein.<br/>Sie ist für den Benutzer sichtbar."
|
3949 |
|
3950 |
#: profile-builder-2.0/admin/manage-fields.php:137
|
3951 |
msgid "Default Value"
|
3964 |
|
3965 |
#: profile-builder-2.0/admin/manage-fields.php:138
|
3966 |
msgid "Specify the option which should be selected by default"
|
3967 |
+
msgstr "Gib die Option ein, die standardmäßig ausgewählt sein soll."
|
3968 |
|
3969 |
#: profile-builder-2.0/admin/manage-fields.php:139
|
3970 |
msgid "Default Option(s)"
|
3972 |
|
3973 |
#: profile-builder-2.0/admin/manage-fields.php:139
|
3974 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
3975 |
+
msgstr "Gib die Option, die standardmäßig überprüft werden sollen, ein.<br/>Wenn mehrere Werte vorhanden sind, trenne diese mit einem Komma."
|
3976 |
|
3977 |
#: profile-builder-2.0/admin/manage-fields.php:153
|
3978 |
msgid "Default Content"
|
4106 |
#: profile-builder-2.0/admin/manage-fields.php:980
|
4107 |
#: profile-builder-2.0/admin/manage-fields.php:1137
|
4108 |
msgid "You must select a field\n"
|
4109 |
+
msgstr "Du musst ein Feld auswählen.\n"
|
4110 |
|
4111 |
#: profile-builder-2.0/admin/manage-fields.php:990
|
4112 |
msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4113 |
+
msgstr "Bitte wähle ein anderes Feld aus. Dieses ist bereits im Formular vorhanden (muss einzigartig) sein.\n"
|
4114 |
|
4115 |
#: profile-builder-2.0/admin/manage-fields.php:1001
|
4116 |
msgid "The entered avatar size is not between 20 and 200\n"
|
4126 |
|
4127 |
#: profile-builder-2.0/admin/manage-fields.php:1015
|
4128 |
msgid "You must enter a value for the row number\n"
|
4129 |
+
msgstr "Du musst die Zeilennummer angeben.\n"
|
4130 |
|
4131 |
#: profile-builder-2.0/admin/manage-fields.php:1036
|
4132 |
msgid "The entered value for the Datepicker is not a valid date-format\n"
|
4134 |
|
4135 |
#: profile-builder-2.0/admin/manage-fields.php:1039
|
4136 |
msgid "You must enter a value for the date-format\n"
|
4137 |
+
msgstr "Du musst das Datumsformat angeben.\n"
|
4138 |
|
4139 |
#: profile-builder-2.0/admin/manage-fields.php:1067
|
4140 |
#: profile-builder-2.0/admin/manage-fields.php:1075
|
4190 |
|
4191 |
#: profile-builder-2.0/admin/manage-fields.php:1208
|
4192 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4193 |
+
msgstr "Verwende folgende Shortcodes auf den Seiten, auf denen du die Formulare angezeigt haben möchtest:"
|
4194 |
|
4195 |
#: profile-builder-2.0/admin/register-version.php:14
|
4196 |
msgid "Register Your Version"
|
4197 |
+
msgstr "Registriere deine Version"
|
4198 |
|
4199 |
#: profile-builder-2.0/admin/register-version.php:14
|
4200 |
msgid "Register Version"
|
4202 |
|
4203 |
#: profile-builder-2.0/admin/register-version.php:70
|
4204 |
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
4205 |
+
msgstr "Wenn du diese Version vom Profile Builder registrierest, erhältst Informationen zu Upgrades, Patches und technischen Support."
|
4206 |
|
4207 |
#: profile-builder-2.0/admin/register-version.php:72
|
4208 |
msgid " Serial Number:"
|
4322 |
|
4323 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:51
|
4324 |
msgid "Your session has expired! Please refresh the page and try again"
|
4325 |
+
msgstr "Deine Sitzung ist abgelaufen! Bitte lade die Seite neu und versuche es noch einmal."
|
4326 |
|
4327 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:64
|
4328 |
msgid "User successfully approved!"
|
4340 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:131
|
4341 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
|
4342 |
msgid "You either don't have permission for that action or there was an error!"
|
4343 |
+
msgstr "Du hast entweder keine Berechtigungen für diese Aktion oder es ist ein Fehler aufgetreten!"
|
4344 |
|
4345 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:96
|
4346 |
msgid "Your session has expired! Please refresh the page and try again."
|
4347 |
+
msgstr "Deine Sitzung ist abgelaufen! Bitte lade die Seite neu und versuche es noch einmal."
|
4348 |
|
4349 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:109
|
4350 |
msgid "Users successfully approved!"
|
4360 |
|
4361 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:147
|
4362 |
msgid "Your account on %1$s has been approved!"
|
4363 |
+
msgstr "Dein Benutzerkonto auf %1$s wurde genehmigt!"
|
4364 |
|
4365 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:148
|
4366 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:151
|
4373 |
|
4374 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:155
|
4375 |
msgid "Your account on %1$s has been unapproved!"
|
4376 |
+
msgstr "Dein Benutzerkonto auf %1$s wurde nicht genehmigt!"
|
4377 |
|
4378 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:156
|
4379 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:159
|
4382 |
|
4383 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:158
|
4384 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
4385 |
+
msgstr "Ein Administrator hat dein Konto auf %1$ s (%2$ s) nicht genehmigt. "
|
4386 |
|
4387 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:177
|
4388 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
4389 |
+
msgstr "<strong>Fehler</strong>: Dein Konto muss von einem Administrator bestätigt werden, bevor du dich anmelden kannst. "
|
4390 |
|
4391 |
#: profile-builder-2.0/features/admin-approval/admin-approval.php:189
|
4392 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
4393 |
+
msgstr "Dein Benutzerkonto muss von einem Administrator bestätigt werden, bevor du die \"Kennwort Wiederherstellung\"-Funktion verwenden kannst."
|
4394 |
|
4395 |
#: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
|
4396 |
msgid "delete this user?"
|
4561 |
|
4562 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
|
4563 |
msgid "[%1$s] Your new account information"
|
4564 |
+
msgstr "[%1$s] Deine neuen Kontodaten"
|
4565 |
|
4566 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
|
4567 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
|
4568 |
+
msgstr "Willkommen bei %1$s! <br/> <br/> <br/>Dein Benutzername ist: %2$s und das Kennwort: %3$s"
|
4569 |
|
4570 |
#: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
|
4571 |
#: profile-builder-2.0/front-end/register.php:125
|
4633 |
|
4634 |
#: profile-builder-2.0/front-end/class-formbuilder.php:175
|
4635 |
msgid "You must be logged in to edit your profile."
|
4636 |
+
msgstr "Du musst angemeldet sein, um dein Profil zu bearbeiten."
|
4637 |
|
4638 |
#: profile-builder-2.0/features/functions.php:994
|
4639 |
msgid "here"
|
4641 |
|
4642 |
#: profile-builder-2.0/features/functions.php:995
|
4643 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4644 |
+
msgstr "Sie wirst in Kürze automatisch weitergeleitet. Wenn du diese Seite mehr als %1$d Sekunden siehst, klicke bitte hier %2$s.%3$s"
|
4645 |
|
4646 |
#: profile-builder-2.0/front-end/class-formbuilder.php:315
|
4647 |
#: profile-builder-2.0/front-end/class-formbuilder.php:322
|
4659 |
|
4660 |
#: profile-builder-2.0/front-end/class-formbuilder.php:347
|
4661 |
msgid "Your profile has been successfully updated!"
|
4662 |
+
msgstr "Dein Profil wurde aktualisiert!"
|
4663 |
|
4664 |
#: profile-builder-2.0/front-end/class-formbuilder.php:358
|
4665 |
msgid "There was an error in the submitted form"
|
4676 |
|
4677 |
#: profile-builder-2.0/front-end/class-formbuilder.php:481
|
4678 |
msgid "Send these credentials via email."
|
4679 |
+
msgstr "Sende mir diese Anmeldeninformationen per E-Mail."
|
4680 |
|
4681 |
#: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
|
4682 |
#: profile-builder-2.0/front-end/login.php:137
|
4720 |
|
4721 |
#: profile-builder-2.0/front-end/recover.php:17
|
4722 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
4723 |
+
msgstr "Dein Benutzerkonto muss von einem Administrator bestätigt werden, bevor du dein Kennwort zurücksetzen kannst."
|
4724 |
|
4725 |
#: profile-builder-2.0/front-end/recover.php:94
|
4726 |
msgid "Reset Password"
|
4732 |
|
4733 |
#: profile-builder-2.0/front-end/recover.php:125
|
4734 |
msgid "You will receive a link to create a new password via email."
|
4735 |
+
msgstr "Du wirst per E-Mail einen Link erhalten, über den du ein neues Passwort vergeben kannst."
|
4736 |
|
4737 |
#: profile-builder-2.0/front-end/recover.php:122
|
4738 |
msgid "Username or E-mail"
|
4756 |
|
4757 |
#: profile-builder-2.0/front-end/recover.php:235
|
4758 |
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
4759 |
+
msgstr "Jemand hat angefragt, dass das Passwort für dieses Konto zurückgesetzt werden soll: <b>%1$s</b> <br/> Wenn diese Anfrage nicht von dir ausgeht, bitte ignoriere diese E-Mail einfach und es geschieht nichts.<br/>Um dein Passwort zurückzusetzen, rufe folgenden Link auf: %2$s"
|
4760 |
|
4761 |
#: profile-builder-2.0/front-end/recover.php:238
|
4762 |
msgid "Password Reset from \"%1$s\""
|
4776 |
|
4777 |
#: profile-builder-2.0/front-end/recover.php:273
|
4778 |
msgid "Your password has been successfully changed!"
|
4779 |
+
msgstr "Dein Passwort wurde erfolgreich geändert!"
|
4780 |
|
4781 |
#: profile-builder-2.0/front-end/recover.php:292
|
4782 |
msgid "You have successfully reset your password to: %1$s"
|
4783 |
+
msgstr "Dein Kennwort wurde erfolgreich zurückgesetzt: %1$s"
|
4784 |
|
4785 |
#: profile-builder-2.0/front-end/recover.php:295
|
4786 |
#: profile-builder-2.0/front-end/recover.php:306
|
4789 |
|
4790 |
#: profile-builder-2.0/front-end/recover.php:303
|
4791 |
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
4792 |
+
msgstr "%1$s hat eine Kennwortänderung über die Funktion \"Kennwort zurücksetzen\" angefordert. <br/>Dein neues Passwort ist: %2$s"
|
4793 |
|
4794 |
#: profile-builder-2.0/front-end/recover.php:320
|
4795 |
msgid "The entered passwords don't match!"
|
4903 |
|
4904 |
#: profile-builder-2.0/modules/modules.php:59
|
4905 |
msgid "Here you can activate / deactivate available modules for Profile Builder."
|
4906 |
+
msgstr "Hier kannst du die verfügbaren Module für Profil-Generator aktivieren/deaktivieren."
|
4907 |
|
4908 |
#: profile-builder-2.0/modules/modules.php:69
|
4909 |
msgid "Name/Description"
|
5023 |
"<p>Benutzername: {{username}}</p> \n"
|
5024 |
"<p>E-Mail :{{user_email}}</p> \n"
|
5025 |
"<p>Die Admin Genehmigung Feature wurde zum Zeitpunkt der Registrierung aktiviert.\n"
|
5026 |
+
"Also bitte denke daran, dass dieser Benutzer genehmigt sein muss, bevor er sich anmelden kann !</p>\n"
|
5027 |
|
5028 |
#: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
|
5029 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
|
5075 |
"<p>Your username is:{{username}} and password:{{password}}</p>\n"
|
5076 |
msgstr ""
|
5077 |
"\n"
|
5078 |
+
"<h3>Willkommen bei {{Site_name}}!</h3> <p>Dein Benutzername ist: {{Username}} und das Passwort ist: {{Passwort}}</p>\n"
|
5079 |
|
5080 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
|
5081 |
msgid "Default Registration"
|
5110 |
msgstr ""
|
5111 |
"\n"
|
5112 |
"<h3>Willkommen bei {{site_name}}!</h3>\n"
|
5113 |
+
"<p>Dein Benutzername ist: {{username}} und das Kennwort: {{password}}</p>\n"
|
5114 |
+
"<p>Bevor du auf dein Konto zugreifen kannst, muss ein Administrator diesen Benutzer freischalten. Du wirst per E-Mail benachrichtigt, sobald dies passiert ist.</p>\n"
|
5115 |
|
5116 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
|
5117 |
msgid "A new account has been created for you on {{site_name}}"
|
5125 |
msgstr ""
|
5126 |
"\n"
|
5127 |
"<h3>Herzlich Willkommen!</h3>\n"
|
5128 |
+
"<p>Der Administrator hat dein Konto freigeschaltet: {{username}} auf {{site_name}}.</p>\n"
|
5129 |
|
5130 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
|
5131 |
msgid "Your account on {{site_name}} has been approved!"
|
5132 |
+
msgstr "Dein Benutzerkonto auf {{site_name}} wurde freigeschaltet!"
|
5133 |
|
5134 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
|
5135 |
msgid "User Approval Notification"
|
5143 |
msgstr ""
|
5144 |
"\n"
|
5145 |
"<h3>Lieber Benutzer,</h3>\n"
|
5146 |
+
"<p>leider hat der Administrator deinem Konto soeben die Freigabe entzogen: {{username}} auf {{site_name}}.</p>\n"
|
5147 |
|
5148 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
|
5149 |
msgid "Your account on {{site_name}} has been unapproved!"
|
5150 |
+
msgstr "Dein Benutzerkonto auf {{site_name}} wurde nicht freigeschaltet!"
|
5151 |
|
5152 |
#: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
|
5153 |
msgid "Unapproved User Notification"
|
5213 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
|
5214 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2156
|
5215 |
msgid "The shortcode will be available after you publish this form."
|
5216 |
+
msgstr "Der Shortcode wird verfügbar sein, nachdem du dieses Formular veröffentlichst."
|
5217 |
|
5218 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
|
5219 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
|
5220 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2158
|
5221 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
5222 |
+
msgstr "Verwende diesen Shortcode auf der Seite, wo das Formular angezeigt werden soll."
|
5223 |
|
5224 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
|
5225 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
|
5250 |
|
5251 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
|
5252 |
msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
|
5253 |
+
msgstr "Gib die URL der Seite ein, zu der die Benutzer umgeleitet werden sollten, sobald du sein Profil mit diesem Formular aktualisiert hast<br/> verwende folgendes Format: http://www.meineWebseite.com"
|
5254 |
|
5255 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
|
5256 |
msgid "After Profile Update..."
|
5264 |
#: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
|
5265 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
|
5266 |
msgid "Choose one of the supported fields you manage <a href=\""
|
5267 |
+
msgstr "Wähle eines der unterstützten Felder, die Sie verwalten aus <a href=\""
|
5268 |
|
5269 |
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
|
5270 |
msgid "<pre>Title (Type)</pre>"
|
5272 |
|
5273 |
#: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
|
5274 |
msgid "You need to specify the title of the form before creating it"
|
5275 |
+
msgstr "Du musst dem Formular einen Titel geben, bevor du es anlegen kannst."
|
5276 |
|
5277 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
|
5278 |
#: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
|
5499 |
|
5500 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:1504
|
5501 |
msgid "You don't have any pagination settings on this userlisting!"
|
5502 |
+
msgstr "Du hast keine Blättern Einstellungen für diese Benutzerliste getätigt!"
|
5503 |
|
5504 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:1970
|
5505 |
msgid "Search"
|
5536 |
|
5537 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2262
|
5538 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
5539 |
+
msgstr "Beschränke die Benutzerlisten nur für diese ausgewählten Rollen <br/> Wenn nicht angegeben, wird standardmäßig auf allen vorhandenen Rollen die Beschränkung gesetzt"
|
5540 |
|
5541 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2263
|
5542 |
msgid "Number of Users/Page"
|
5564 |
|
5565 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2266
|
5566 |
msgid "Set the avatar size on the all-userlisting only"
|
5567 |
+
msgstr "Lege die Profilbildgröße für alle Benutzer-Listen fest."
|
5568 |
|
5569 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2267
|
5570 |
msgid "Avatar Size (Single-userlisting)"
|
5572 |
|
5573 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2267
|
5574 |
msgid "Set the avatar size on the single-userlisting only"
|
5575 |
+
msgstr "Setze die Profilbild-Größe (nur für die Einzel-Benutzeranzeige)"
|
5576 |
|
5577 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2268
|
5578 |
msgid "Visible only to logged in users?"
|
5596 |
|
5597 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2402
|
5598 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
5599 |
+
msgstr "Du musst die Benutzerlisten-Funktion innerhalb des Tabs \"Module\" aktivieren!"
|
5600 |
|
5601 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2402
|
5602 |
msgid "You can find it in the Profile Builder menu."
|
5603 |
+
msgstr "Du findest es im Menü vom Profile Builder"
|
5604 |
|
5605 |
#: profile-builder-2.0/modules/user-listing/userlisting.php:2565
|
5606 |
msgid "No results found!"
|
5607 |
+
msgstr "Es wurden keine Ergebnisse gefunden!"
|
5608 |
+
|
translation/profile-builder.catalog.php
CHANGED
@@ -1164,6 +1164,7 @@
|
|
1164 |
<?php __("%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s", "profile-builder"); ?>
|
1165 |
<?php __("You are already logged in. You can change your password on the edit profile form.", "profile-builder"); ?>
|
1166 |
<?php __("The password must not be empty!", "profile-builder"); ?>
|
|
|
1167 |
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
1168 |
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
1169 |
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
@@ -1174,7 +1175,6 @@
|
|
1174 |
<?php __("Check your e-mail for the confirmation link.", "profile-builder"); ?>
|
1175 |
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1176 |
<?php __("ERROR:", "profile-builder"); ?>
|
1177 |
-
<?php __("Invalid key!", "profile-builder"); ?>
|
1178 |
<?php __("Invalid activation key!", "profile-builder"); ?>
|
1179 |
<?php __("This username is now active!", "profile-builder"); ?>
|
1180 |
<?php __("There was an error while trying to activate the user.", "profile-builder"); ?>
|
1164 |
<?php __("%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s", "profile-builder"); ?>
|
1165 |
<?php __("You are already logged in. You can change your password on the edit profile form.", "profile-builder"); ?>
|
1166 |
<?php __("The password must not be empty!", "profile-builder"); ?>
|
1167 |
+
<?php __("Invalid key!", "profile-builder"); ?>
|
1168 |
<?php __("The entered passwords don't match!", "profile-builder"); ?>
|
1169 |
<?php __("The password must have the minimum length of %s characters", "profile-builder"); ?>
|
1170 |
<?php __("Your password has been successfully changed!", "profile-builder"); ?>
|
1175 |
<?php __("Check your e-mail for the confirmation link.", "profile-builder"); ?>
|
1176 |
<?php __("There was an error while trying to send the activation link to %1$s!", "profile-builder"); ?>
|
1177 |
<?php __("ERROR:", "profile-builder"); ?>
|
|
|
1178 |
<?php __("Invalid activation key!", "profile-builder"); ?>
|
1179 |
<?php __("This username is now active!", "profile-builder"); ?>
|
1180 |
<?php __("There was an error while trying to activate the user.", "profile-builder"); ?>
|
translation/profile-builder.pot
CHANGED
@@ -25,7 +25,7 @@ msgstr ""
|
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, features/content-restriction/content-restriction.php:
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
@@ -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 |
|
@@ -313,7 +313,7 @@ msgstr ""
|
|
313 |
msgid "Login Label"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: ../pb-add-on-custom-profile-menus/index.php:183, ../pb-add-on-custom-profile-menus/index.php:305, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:13, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:60, features/login-widget/login-widget.php:
|
317 |
msgid "Login"
|
318 |
msgstr ""
|
319 |
|
@@ -321,7 +321,7 @@ msgstr ""
|
|
321 |
msgid "Logout Label"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: ../pb-add-on-custom-profile-menus/index.php:191, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16, front-end/class-formbuilder.php:
|
325 |
msgid "Logout"
|
326 |
msgstr ""
|
327 |
|
@@ -349,7 +349,7 @@ msgstr ""
|
|
349 |
msgid "Display Mode"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: ../pb-add-on-custom-profile-menus/index.php:255, features/content-restriction/content-restriction-meta-box.php:
|
353 |
msgid "Logged In Users"
|
354 |
msgstr ""
|
355 |
|
@@ -369,7 +369,7 @@ msgstr ""
|
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
@@ -417,7 +417,7 @@ msgstr ""
|
|
417 |
msgid "Toolbox"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: ../pb-add-on-customization-toolbox/index.php:147, ../pb-add-on-social-connect/index.php:237, admin/admin-functions.php:
|
421 |
msgid "Settings"
|
422 |
msgstr ""
|
423 |
|
@@ -425,7 +425,7 @@ msgstr ""
|
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../pb-add-on-field-visibility/index.php:219, admin/admin-bar.php:
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
@@ -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,11 +683,11 @@ 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:324, admin/general-settings.php:
|
687 |
msgid "Yes"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325, admin/general-settings.php:
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
@@ -875,7 +875,7 @@ msgstr ""
|
|
875 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: ../pb-add-on-social-connect/index.php:390, features/admin-approval/admin-approval.php:
|
879 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
880 |
msgstr ""
|
881 |
|
@@ -883,7 +883,7 @@ msgstr ""
|
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
@@ -927,7 +927,7 @@ msgstr ""
|
|
927 |
msgid "Profile Builder not active!"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: ../pb-add-on-social-connect/index.php:864, admin/admin-functions.php:
|
931 |
msgid "General Settings"
|
932 |
msgstr ""
|
933 |
|
@@ -951,11 +951,11 @@ msgstr ""
|
|
951 |
msgid "Country"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:
|
955 |
msgid "First Name"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:
|
959 |
msgid "Last Name"
|
960 |
msgstr ""
|
961 |
|
@@ -1067,7 +1067,7 @@ msgstr ""
|
|
1067 |
msgid "Field Name"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:
|
1071 |
msgid "Required"
|
1072 |
msgstr ""
|
1073 |
|
@@ -1075,7 +1075,7 @@ msgstr ""
|
|
1075 |
msgid "Click to edit "
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: ../pb-add-on-woocommerce/index.php:391, front-end/default-fields/email/email.php:
|
1079 |
msgid "The email you entered is not a valid email address."
|
1080 |
msgstr ""
|
1081 |
|
@@ -1123,7 +1123,7 @@ msgstr ""
|
|
1123 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: index.php:
|
1127 |
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1128 |
msgstr ""
|
1129 |
|
@@ -1131,7 +1131,7 @@ msgstr ""
|
|
1131 |
msgid "Communication Preferences"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: ../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:
|
1135 |
msgid "E-mail"
|
1136 |
msgstr ""
|
1137 |
|
@@ -1235,7 +1235,7 @@ msgstr ""
|
|
1235 |
msgid "Edit this item"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:
|
1239 |
msgid "Cancel"
|
1240 |
msgstr ""
|
1241 |
|
@@ -1459,2867 +1459,2867 @@ msgstr ""
|
|
1459 |
msgid "Link with Twitter"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: admin/add-ons.php:
|
1463 |
msgid "Add-Ons"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: admin/add-ons.php:
|
1467 |
msgid "Recommended Plugins"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: admin/add-ons.php:
|
1471 |
msgid "Free"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: admin/add-ons.php:
|
1475 |
msgid "Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: admin/add-ons.php:
|
1479 |
msgid "Install Now"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: admin/add-ons.php:
|
1483 |
msgid "Compatible with your version of Profile Builder."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: admin/add-ons.php:
|
1487 |
msgid "Deactivate"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: admin/add-ons.php:
|
1491 |
msgid "Activate"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: admin/add-ons.php:
|
1495 |
msgid "Plugin is <strong>active</strong>"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: admin/add-ons.php:
|
1499 |
msgid "Plugin is <strong>inactive</strong>"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: admin/add-ons.php:
|
1503 |
msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: admin/add-ons.php:
|
1507 |
msgid "Accept user payments, create subscription plans and restrict content on your membership site."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: admin/add-ons.php:
|
1511 |
msgid "Downloading and installing..."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: admin/add-ons.php:
|
1515 |
msgid "Installation complete"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: admin/add-ons.php:
|
1519 |
msgid "Add-On is Active"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: admin/add-ons.php:
|
1523 |
msgid "Add-On has been activated"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: admin/add-ons.php:
|
1527 |
msgid "Retry Install"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: admin/add-ons.php:
|
1531 |
msgid "Add-On is <strong>active</strong>"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: admin/add-ons.php:
|
1535 |
msgid "Add-On is <strong>inactive</strong>"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: admin/add-ons.php:
|
1539 |
msgid "Add-On has been deactivated."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: admin/add-ons.php:
|
1543 |
msgid "Available with the Pro Version"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: admin/add-ons.php:
|
1547 |
msgid "Available with the Hobbyist and Pro Versions"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: admin/add-ons.php:
|
1551 |
msgid "Available with All Versions"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: admin/add-ons.php:
|
1555 |
msgid "Update"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: admin/add-ons.php:
|
1559 |
msgid "Not compatible with your version of Profile Builder."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: admin/add-ons.php:
|
1563 |
msgid "Minimum required Profile Builder version:"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: admin/add-ons.php:
|
1567 |
msgid "Upgrade Profile Builder"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: admin/add-ons.php:
|
1571 |
msgid "Not compatible with Profile Builder"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: admin/add-ons.php:
|
1575 |
msgid "Learn More"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: admin/add-ons.php:
|
1579 |
msgid "Download Now"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: admin/add-ons.php:
|
1583 |
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: admin/add-ons.php:
|
1587 |
msgid "Something went wrong, we could not connect to the server. Please try again later."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: admin/admin-bar.php:
|
1591 |
msgid "Show/Hide the Admin Bar on the Front-End"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: admin/admin-bar.php:
|
1595 |
msgid "Admin Bar Settings"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: admin/admin-bar.php:
|
1599 |
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: admin/admin-bar.php:
|
1603 |
msgid "User-Role"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: admin/admin-bar.php:
|
1607 |
msgid "Default"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: admin/admin-bar.php:
|
1611 |
msgid "Show"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: admin/admin-bar.php:
|
1615 |
msgid "Hide"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: admin/admin-functions.php:
|
1619 |
msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: admin/admin-functions.php:
|
1623 |
msgid "Display name publicly as - only appears on the Edit Profile page!"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: admin/admin-functions.php:
|
1627 |
msgid "Blog Details - only appears on the Registration page!"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: admin/admin-functions.php:
|
1631 |
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: admin/admin-functions.php:
|
1635 |
msgid "Very weak"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: admin/admin-functions.php:
|
1639 |
msgid "Weak"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: admin/admin-functions.php:
|
1643 |
msgid "Medium"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: admin/admin-functions.php:
|
1647 |
msgid "Strong"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: admin/admin-functions.php:
|
1651 |
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: admin/admin-functions.php:
|
1655 |
msgid "Save Settings"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: admin/admin-functions.php:
|
1659 |
msgid "Add Field"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: admin/admin-functions.php:
|
1663 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: admin/admin-functions.php:
|
1667 |
msgid "View Profile Builder documentation"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: admin/admin-functions.php:
|
1671 |
msgid "Docs"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: admin/admin-functions.php:
|
1675 |
msgid "Check out the Customization Toolbox add-on which packs the most popular customization requests from Profile Builder."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: admin/admin-functions.php:
|
1679 |
msgid "See details"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
-
#: admin/admin-functions.php:
|
1683 |
msgid "Dismiss this notice."
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: admin/basic-info.php:
|
1687 |
msgid "Basic Information"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: admin/basic-info.php:
|
1691 |
msgid "<strong>Profile Builder </strong> %s"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: admin/basic-info.php:
|
1695 |
msgid "The best way to add front-end registration, edit profile and login forms."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: admin/basic-info.php:
|
1699 |
msgid "You can see all the pages with Profile Builder form shortcodes here:"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
-
#: admin/basic-info.php:
|
1703 |
msgid "View Form Pages"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: admin/basic-info.php:
|
1707 |
msgid "Speed up the setup process by automatically creating the form pages:"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: admin/basic-info.php:
|
1711 |
msgid "Create Form Pages"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: admin/basic-info.php:
|
1715 |
msgid "Login Form"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: admin/basic-info.php:
|
1719 |
msgid "Friction-less login using %s shortcode or a widget."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: admin/basic-info.php:
|
1723 |
msgid "Registration Form"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: admin/basic-info.php:
|
1727 |
msgid "Beautiful registration forms fully customizable using the %s shortcode."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: admin/basic-info.php:
|
1731 |
msgid "Edit Profile Form"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: admin/basic-info.php:
|
1735 |
msgid "Straight forward edit profile forms using %s shortcode."
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: admin/basic-info.php:
|
1739 |
msgid "Extra Features"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: admin/basic-info.php:
|
1743 |
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: admin/basic-info.php:
|
1747 |
msgid "Enable extra features"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: admin/basic-info.php:
|
1751 |
msgid "Recover Password"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: admin/basic-info.php:
|
1755 |
msgid "Allow users to recover their password in the front-end using the %s."
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: admin/basic-info.php:
|
1759 |
msgid "Admin Approval (*)"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: admin/basic-info.php:
|
1763 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: admin/basic-info.php:
|
1767 |
msgid "Email Confirmation"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: admin/basic-info.php:
|
1771 |
msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: admin/basic-info.php:
|
1775 |
msgid "Content Restriction"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: admin/basic-info.php:
|
1779 |
msgid "Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: admin/basic-info.php:
|
1783 |
msgid "Minimum Password Length and Strength Meter"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: admin/basic-info.php:
|
1787 |
msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: admin/basic-info.php:
|
1791 |
msgid "Login with Email or Username"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: admin/basic-info.php:
|
1795 |
msgid "Allow users to log in with their email or username when accessing your site."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: admin/basic-info.php:
|
1799 |
msgid "Roles Editor"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: admin/basic-info.php:
|
1803 |
msgid "Add, remove, clone and edit roles and also capabilities for these roles."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: admin/basic-info.php:
|
1807 |
msgid "Customize Your Forms The Way You Want (*)"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: admin/basic-info.php:
|
1811 |
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: admin/basic-info.php:
|
1815 |
msgid "Get started with extra fields"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: admin/basic-info.php:
|
1819 |
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: admin/basic-info.php:
|
1823 |
msgid "Avatar Upload"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: admin/basic-info.php:
|
1827 |
msgid "Generic Uploads"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: admin/basic-info.php:
|
1831 |
msgid "Agree To Terms Checkbox"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: admin/basic-info.php:
|
1835 |
msgid "Datepicker"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: admin/basic-info.php:
|
1839 |
msgid "Timepicker"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: admin/basic-info.php:
|
1843 |
msgid "Colorpicker"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
-
#: admin/basic-info.php:
|
1847 |
msgid "reCAPTCHA"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#: admin/basic-info.php:
|
1851 |
msgid "Country Select"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: admin/basic-info.php:
|
1855 |
msgid "Currency Select"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
-
#: admin/basic-info.php:
|
1859 |
msgid "Timezone Select"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: admin/basic-info.php:
|
1863 |
msgid "Input / Hidden Input"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: admin/basic-info.php:
|
1867 |
msgid "Number"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: admin/basic-info.php:
|
1871 |
msgid "Checkbox"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: admin/basic-info.php:
|
1875 |
msgid "Select"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: admin/basic-info.php:
|
1879 |
msgid "Radio Buttons"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: admin/basic-info.php:
|
1883 |
msgid "Textarea"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: admin/basic-info.php:
|
1887 |
msgid "Validation"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: admin/basic-info.php:
|
1891 |
msgid "Map"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: admin/basic-info.php:
|
1895 |
msgid "HTML"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: admin/basic-info.php:
|
1899 |
msgid "Powerful Modules (**)"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: admin/basic-info.php:
|
1903 |
msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: admin/basic-info.php:
|
1907 |
msgid "Enable your modules"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: admin/basic-info.php:
|
1911 |
msgid "Find out more about PRO Modules"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: admin/basic-info.php:
|
1915 |
msgid "User Listing"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: admin/basic-info.php:
|
1919 |
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: admin/basic-info.php:
|
1923 |
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: admin/basic-info.php:
|
1927 |
msgid "Email Customizer"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: admin/basic-info.php:
|
1931 |
msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: admin/basic-info.php:
|
1935 |
msgid "Custom Redirects"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: admin/basic-info.php:
|
1939 |
msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: admin/basic-info.php:
|
1943 |
msgid "Multiple Registration Forms"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: admin/basic-info.php:
|
1947 |
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: admin/basic-info.php:
|
1951 |
msgid "Multiple Edit-profile Forms"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: admin/basic-info.php:
|
1955 |
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: admin/basic-info.php:
|
1959 |
msgid "Repeater Fields"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: admin/basic-info.php:
|
1963 |
msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: admin/basic-info.php:
|
1967 |
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: admin/basic-info.php:
|
1971 |
msgid "** only available in the %1$sPro version%2$s."
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: admin/feedback.php:
|
1975 |
msgid "Quick Feedback"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: admin/feedback.php:
|
1979 |
msgid "Because we care about our clients, please leave us feedback on why you are no longer using our plugin."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: admin/feedback.php:
|
1983 |
msgid "Lacking certain features"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: admin/feedback.php:
|
1987 |
msgid "What feature would you like to see?"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: admin/feedback.php:
|
1991 |
msgid "Hard to use"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: admin/feedback.php:
|
1995 |
msgid "How can we improve our user experience ?"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: admin/feedback.php:
|
1999 |
msgid "Unsatisfactory support"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: admin/feedback.php:
|
2003 |
msgid "Other"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: admin/feedback.php:
|
2007 |
msgid "Please tell us more"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: admin/feedback.php:
|
2011 |
msgid "Poor Documentation"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: admin/feedback.php:
|
2015 |
msgid "Tell us what you couldn't find"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: admin/feedback.php:
|
2019 |
msgid "Submit & Deactivate"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: admin/feedback.php:
|
2023 |
msgid "Skip and Deactivate"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: admin/feedback.php:
|
2027 |
msgid "Submit and Deactivate"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: admin/general-settings.php:
|
2031 |
msgid "Admin Bar"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: admin/general-settings.php:
|
2035 |
msgid "Private Website"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: admin/general-settings.php:
|
2039 |
msgid "User Emails"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: admin/general-settings.php:
|
2043 |
msgid "Administrator Emails"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: admin/general-settings.php:
|
2047 |
msgid "Profile Builder Settings"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: admin/general-settings.php:
|
2051 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: admin/general-settings.php:
|
2055 |
msgid "You can find the default file here: %1$s"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: admin/general-settings.php:
|
2059 |
msgid "Automatically Log In:"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: admin/general-settings.php:
|
2063 |
msgid "Select \"Yes\" to automatically log in new users after successful registration."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: admin/general-settings.php:
|
2067 |
msgid "\"Email Confirmation\" Activated:"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: admin/general-settings.php:
|
2071 |
msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: admin/general-settings.php:
|
2075 |
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: admin/general-settings.php:
|
2079 |
msgid "\"Email Confirmation\" Landing Page:"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: admin/general-settings.php:
|
2083 |
msgid "Existing Pages"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: admin/general-settings.php:
|
2087 |
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: admin/general-settings.php:
|
2091 |
msgid "\"Admin Approval\" Activated:"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: admin/general-settings.php:
|
2095 |
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: admin/general-settings.php:
|
2099 |
msgid "\"Admin Approval\" on User Role:"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: admin/general-settings.php:
|
2103 |
msgid "Select on what user roles to activate Admin Approval."
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: admin/general-settings.php:
|
2107 |
msgid "\"Roles Editor\" Activated:"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: admin/general-settings.php:
|
2111 |
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: admin/general-settings.php:
|
2115 |
msgid "\"Admin Approval\" Feature:"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: admin/general-settings.php:
|
2119 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: admin/general-settings.php:
|
2123 |
msgid "Allow Users to Log in With:"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: admin/general-settings.php:
|
2127 |
msgid "Username and Email"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: admin/general-settings.php:
|
2131 |
msgid "Username"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: admin/general-settings.php:
|
2135 |
msgid "Email"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: admin/general-settings.php:
|
2139 |
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: admin/general-settings.php:
|
2143 |
msgid "\"Username\" - users can Log In only with Username."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: admin/general-settings.php:
|
2147 |
msgid "\"Email\" - users can Log In only with Email."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: admin/general-settings.php:
|
2151 |
msgid "Minimum Password Length:"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: admin/general-settings.php:
|
2155 |
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: admin/general-settings.php:
|
2159 |
msgid "Minimum Password Strength:"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: admin/general-settings.php:
|
2163 |
msgid "Disabled"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: admin/general-settings.php:
|
2167 |
msgid "Use ajax on conditional fields:"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: admin/general-settings.php:
|
2171 |
msgid "For large conditional forms select \"Yes\" for an improved page performance"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: admin/manage-fields.php:
|
2175 |
msgid "Form Fields"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: admin/manage-fields.php:
|
2179 |
msgid "Manage Form Fields"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: admin/manage-fields.php:
|
2183 |
msgid "Choose one of the supported field types"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: admin/manage-fields.php:
|
2187 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: admin/manage-fields.php:
|
2191 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: admin/manage-fields.php:
|
2195 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: admin/manage-fields.php:
|
2199 |
msgid "Field Title"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: admin/manage-fields.php:
|
2203 |
msgid "Title of the field"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: admin/manage-fields.php:
|
2207 |
msgid "Field"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: admin/manage-fields.php:
|
2211 |
msgid "Meta-name"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: admin/manage-fields.php:
|
2215 |
msgid "ID"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: admin/manage-fields.php:
|
2219 |
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
-
#: admin/manage-fields.php:
|
2223 |
msgid "Description"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: admin/manage-fields.php:
|
2227 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: admin/manage-fields.php:
|
2231 |
msgid "Row Count"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: admin/manage-fields.php:
|
2235 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: admin/manage-fields.php:
|
2239 |
msgid "Allowed Image Extensions"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: admin/manage-fields.php:
|
2243 |
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: admin/manage-fields.php:
|
2247 |
msgid "Allowed Upload Extensions"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: admin/manage-fields.php:
|
2251 |
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 (.*)"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: admin/manage-fields.php:
|
2255 |
msgid "Avatar Size"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: admin/manage-fields.php:
|
2259 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: admin/manage-fields.php:
|
2263 |
msgid "Date-format"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: admin/manage-fields.php:
|
2267 |
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"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: admin/manage-fields.php:
|
2271 |
msgid "Terms of Agreement"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: admin/manage-fields.php:
|
2275 |
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>"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: admin/manage-fields.php:
|
2279 |
msgid "Options"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: admin/manage-fields.php:
|
2283 |
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"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: admin/manage-fields.php:
|
2287 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: admin/manage-fields.php:
|
2291 |
msgid "reCAPTCHA Type"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: admin/manage-fields.php:
|
2295 |
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."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: admin/manage-fields.php:
|
2299 |
msgid "Site Key"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: admin/manage-fields.php:
|
2303 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: admin/manage-fields.php:
|
2307 |
msgid "Secret Key"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: admin/manage-fields.php:
|
2311 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: admin/manage-fields.php:
|
2315 |
msgid "Display on PB forms"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: admin/manage-fields.php:
|
2319 |
msgid "PB Login"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: admin/manage-fields.php:
|
2323 |
msgid "PB Register"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: admin/manage-fields.php:
|
2327 |
msgid "PB Recover Password"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: admin/manage-fields.php:
|
2331 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: admin/manage-fields.php:
|
2335 |
msgid "Display on default WP forms"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: admin/manage-fields.php:
|
2339 |
msgid "Default WP Login"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: admin/manage-fields.php:
|
2343 |
msgid "Default WP Register"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: admin/manage-fields.php:
|
2347 |
msgid "Default WP Recover Password"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: admin/manage-fields.php:
|
2351 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: admin/manage-fields.php:
|
2355 |
msgid "User Roles"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: admin/manage-fields.php:
|
2359 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: admin/manage-fields.php:
|
2363 |
msgid "Display on Edit Profile"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: admin/manage-fields.php:
|
2367 |
msgid "Check if you want the select user role field to appear on Edit Profile forms"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: admin/manage-fields.php:
|
2371 |
msgid "User Roles Order"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: admin/manage-fields.php:
|
2375 |
msgid "Save the user role order from the user roles checkboxes"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: admin/manage-fields.php:
|
2379 |
msgid "Default Value"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: admin/manage-fields.php:
|
2383 |
msgid "Default value of the field"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: admin/manage-fields.php:
|
2387 |
msgid "Default Option"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: admin/manage-fields.php:
|
2391 |
msgid "Specify the option which should be selected by default"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: admin/manage-fields.php:
|
2395 |
msgid "Default Option(s)"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: admin/manage-fields.php:
|
2399 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: admin/manage-fields.php:
|
2403 |
msgid "Default option of the field"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: admin/manage-fields.php:
|
2407 |
msgid "Show Currency Symbol"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: admin/manage-fields.php:
|
2411 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: admin/manage-fields.php:
|
2415 |
msgid "Show Post Type"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: admin/manage-fields.php:
|
2419 |
msgid "Posts from what post type will be displayed in the select."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: admin/manage-fields.php:
|
2423 |
msgid "Allowable Values"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: admin/manage-fields.php:
|
2427 |
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."
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: admin/manage-fields.php:
|
2431 |
msgid "Error Message"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: admin/manage-fields.php:
|
2435 |
msgid "Set a custom error message that will be displayed to the user."
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: admin/manage-fields.php:
|
2439 |
msgid "Time Format"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: admin/manage-fields.php:
|
2443 |
msgid "Specify the time format."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: admin/manage-fields.php:
|
2447 |
msgid "Google Maps API Key"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: admin/manage-fields.php:
|
2451 |
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."
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: admin/manage-fields.php:
|
2455 |
msgid "Default Latitude"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: admin/manage-fields.php:
|
2459 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: admin/manage-fields.php:
|
2463 |
msgid "Default Longitude"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: admin/manage-fields.php:
|
2467 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: admin/manage-fields.php:
|
2471 |
msgid "Default Zoom Level"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: admin/manage-fields.php:
|
2475 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: admin/manage-fields.php:
|
2479 |
msgid "Map Height"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: admin/manage-fields.php:
|
2483 |
msgid "The height of the map."
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: admin/manage-fields.php:
|
2487 |
msgid "Default Content"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: admin/manage-fields.php:
|
2491 |
msgid "Default value of the textarea"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: admin/manage-fields.php:
|
2495 |
msgid "HTML Content"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: admin/manage-fields.php:
|
2499 |
msgid "Add your HTML (or text) content"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: admin/manage-fields.php:
|
2503 |
msgid "Phone Format"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: admin/manage-fields.php:
|
2507 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: admin/manage-fields.php:
|
2511 |
msgid "Eg. (###) ###-####"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: admin/manage-fields.php:
|
2515 |
msgid "Empty field won't check for correct phone number."
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: admin/manage-fields.php:
|
2519 |
msgid "Heading Tag"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: admin/manage-fields.php:
|
2523 |
msgid "Change heading field size on front-end forms"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: admin/manage-fields.php:
|
2527 |
msgid "Min Number Value"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: admin/manage-fields.php:
|
2531 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: admin/manage-fields.php:
|
2535 |
msgid "Leave it empty for no min value"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: admin/manage-fields.php:
|
2539 |
msgid "Max Number Value"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: admin/manage-fields.php:
|
2543 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: admin/manage-fields.php:
|
2547 |
msgid "Leave it empty for no max value"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: admin/manage-fields.php:
|
2551 |
msgid "Number Step Value"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: admin/manage-fields.php:
|
2555 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: admin/manage-fields.php:
|
2559 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: admin/manage-fields.php:
|
2563 |
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)"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: admin/manage-fields.php:
|
2567 |
msgid "Leave it empty for no restriction"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: admin/manage-fields.php:
|
2571 |
msgid "Whether the field is required or not"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: admin/manage-fields.php:
|
2575 |
msgid "Overwrite Existing"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: admin/manage-fields.php:
|
2579 |
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"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: admin/manage-fields.php:
|
2583 |
msgid "POIs Load Type"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: admin/manage-fields.php:
|
2587 |
msgid "POIs of the listed users (as filtered & paginated)"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: admin/manage-fields.php:
|
2591 |
msgid "POIs of all the users for the filter* (no pagination)"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: admin/manage-fields.php:
|
2595 |
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."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: admin/manage-fields.php:
|
2599 |
msgid "POI Bubble Info"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: admin/manage-fields.php:
|
2603 |
msgid "Select the attributes to be listed inside the POI bubble."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: admin/manage-fields.php:
|
2607 |
msgid "Number of Users per Map Iteration"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: admin/manage-fields.php:
|
2611 |
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."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: admin/manage-fields.php:
|
2615 |
msgid "Form Field Properties"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: admin/manage-fields.php:
|
2619 |
msgid "Registration & Edit Profile Forms"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: admin/manage-fields.php:
|
2623 |
msgid "Usernames cannot be changed."
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: admin/manage-fields.php:
|
2627 |
msgid "Nickname"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: admin/manage-fields.php:
|
2631 |
msgid "Display name publicly as"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: admin/manage-fields.php:
|
2635 |
msgid "Website"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: admin/manage-fields.php:
|
2639 |
msgid "AIM"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: admin/manage-fields.php:
|
2643 |
msgid "Yahoo IM"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: admin/manage-fields.php:
|
2647 |
msgid "Jabber / Google Talk"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: admin/manage-fields.php:
|
2651 |
msgid "Biographical Info"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: admin/manage-fields.php:
|
2655 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: admin/manage-fields.php:
|
2659 |
msgid "Password"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: admin/manage-fields.php:
|
2663 |
msgid "Type your password."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: admin/manage-fields.php:
|
2667 |
msgid "Repeat Password"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: admin/manage-fields.php:
|
2671 |
msgid "Type your password again. "
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: admin/manage-fields.php:
|
2675 |
msgid "Blog Details"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: admin/manage-fields.php:
|
2679 |
msgid "Select a Country"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: admin/manage-fields.php:
|
2683 |
msgid "Afghanistan"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: admin/manage-fields.php:
|
2687 |
msgid "Aland Islands"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: admin/manage-fields.php:
|
2691 |
msgid "Albania"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: admin/manage-fields.php:
|
2695 |
msgid "Algeria"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: admin/manage-fields.php:
|
2699 |
msgid "American Samoa"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: admin/manage-fields.php:
|
2703 |
msgid "Andorra"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: admin/manage-fields.php:
|
2707 |
msgid "Angola"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: admin/manage-fields.php:
|
2711 |
msgid "Anguilla"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: admin/manage-fields.php:
|
2715 |
msgid "Antarctica"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: admin/manage-fields.php:
|
2719 |
msgid "Antigua and Barbuda"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: admin/manage-fields.php:
|
2723 |
msgid "Argentina"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: admin/manage-fields.php:
|
2727 |
msgid "Armenia"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: admin/manage-fields.php:
|
2731 |
msgid "Aruba"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: admin/manage-fields.php:
|
2735 |
msgid "Australia"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: admin/manage-fields.php:
|
2739 |
msgid "Austria"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: admin/manage-fields.php:
|
2743 |
msgid "Azerbaijan"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: admin/manage-fields.php:
|
2747 |
msgid "Bahamas"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: admin/manage-fields.php:
|
2751 |
msgid "Bahrain"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: admin/manage-fields.php:
|
2755 |
msgid "Bangladesh"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: admin/manage-fields.php:
|
2759 |
msgid "Barbados"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: admin/manage-fields.php:
|
2763 |
msgid "Belarus"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: admin/manage-fields.php:
|
2767 |
msgid "Belgium"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: admin/manage-fields.php:
|
2771 |
msgid "Belize"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: admin/manage-fields.php:
|
2775 |
msgid "Benin"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: admin/manage-fields.php:
|
2779 |
msgid "Bermuda"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: admin/manage-fields.php:
|
2783 |
msgid "Bhutan"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: admin/manage-fields.php:
|
2787 |
msgid "Bolivia"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: admin/manage-fields.php:
|
2791 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: admin/manage-fields.php:
|
2795 |
msgid "Bosnia and Herzegovina"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: admin/manage-fields.php:
|
2799 |
msgid "Botswana"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: admin/manage-fields.php:
|
2803 |
msgid "Bouvet Island"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: admin/manage-fields.php:
|
2807 |
msgid "Brazil"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: admin/manage-fields.php:
|
2811 |
msgid "British Indian Ocean Territory"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: admin/manage-fields.php:
|
2815 |
msgid "British Virgin Islands"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: admin/manage-fields.php:
|
2819 |
msgid "Brunei"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: admin/manage-fields.php:
|
2823 |
msgid "Bulgaria"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: admin/manage-fields.php:
|
2827 |
msgid "Burkina Faso"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: admin/manage-fields.php:
|
2831 |
msgid "Burundi"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: admin/manage-fields.php:
|
2835 |
msgid "Cambodia"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: admin/manage-fields.php:
|
2839 |
msgid "Cameroon"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: admin/manage-fields.php:
|
2843 |
msgid "Canada"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: admin/manage-fields.php:
|
2847 |
msgid "Cape Verde"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: admin/manage-fields.php:
|
2851 |
msgid "Cayman Islands"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: admin/manage-fields.php:
|
2855 |
msgid "Central African Republic"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: admin/manage-fields.php:
|
2859 |
msgid "Chad"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: admin/manage-fields.php:
|
2863 |
msgid "Chile"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: admin/manage-fields.php:
|
2867 |
msgid "China"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: admin/manage-fields.php:
|
2871 |
msgid "Christmas Island"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: admin/manage-fields.php:
|
2875 |
msgid "Cocos Islands"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: admin/manage-fields.php:
|
2879 |
msgid "Colombia"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: admin/manage-fields.php:
|
2883 |
msgid "Comoros"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: admin/manage-fields.php:
|
2887 |
msgid "Cook Islands"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: admin/manage-fields.php:
|
2891 |
msgid "Costa Rica"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: admin/manage-fields.php:
|
2895 |
msgid "Croatia"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: admin/manage-fields.php:
|
2899 |
msgid "Cuba"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: admin/manage-fields.php:
|
2903 |
msgid "Curacao"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: admin/manage-fields.php:
|
2907 |
msgid "Cyprus"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: admin/manage-fields.php:
|
2911 |
msgid "Czech Republic"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: admin/manage-fields.php:
|
2915 |
msgid "Democratic Republic of the Congo"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: admin/manage-fields.php:
|
2919 |
msgid "Denmark"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: admin/manage-fields.php:
|
2923 |
msgid "Djibouti"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: admin/manage-fields.php:
|
2927 |
msgid "Dominica"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: admin/manage-fields.php:
|
2931 |
msgid "Dominican Republic"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: admin/manage-fields.php:
|
2935 |
msgid "East Timor"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: admin/manage-fields.php:
|
2939 |
msgid "Ecuador"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: admin/manage-fields.php:
|
2943 |
msgid "Egypt"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: admin/manage-fields.php:
|
2947 |
msgid "El Salvador"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: admin/manage-fields.php:
|
2951 |
msgid "Equatorial Guinea"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: admin/manage-fields.php:
|
2955 |
msgid "Eritrea"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: admin/manage-fields.php:
|
2959 |
msgid "Estonia"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: admin/manage-fields.php:
|
2963 |
msgid "Ethiopia"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: admin/manage-fields.php:
|
2967 |
msgid "Falkland Islands"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: admin/manage-fields.php:
|
2971 |
msgid "Faroe Islands"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: admin/manage-fields.php:
|
2975 |
msgid "Fiji"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: admin/manage-fields.php:
|
2979 |
msgid "Finland"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: admin/manage-fields.php:
|
2983 |
msgid "France"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: admin/manage-fields.php:
|
2987 |
msgid "French Guiana"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: admin/manage-fields.php:
|
2991 |
msgid "French Polynesia"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: admin/manage-fields.php:
|
2995 |
msgid "French Southern Territories"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: admin/manage-fields.php:
|
2999 |
msgid "Gabon"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: admin/manage-fields.php:
|
3003 |
msgid "Gambia"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: admin/manage-fields.php:
|
3007 |
msgid "Georgia"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: admin/manage-fields.php:
|
3011 |
msgid "Germany"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: admin/manage-fields.php:
|
3015 |
msgid "Ghana"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: admin/manage-fields.php:
|
3019 |
msgid "Gibraltar"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: admin/manage-fields.php:
|
3023 |
msgid "Greece"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: admin/manage-fields.php:
|
3027 |
msgid "Greenland"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: admin/manage-fields.php:
|
3031 |
msgid "Grenada"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: admin/manage-fields.php:
|
3035 |
msgid "Guadeloupe"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: admin/manage-fields.php:
|
3039 |
msgid "Guam"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: admin/manage-fields.php:
|
3043 |
msgid "Guatemala"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: admin/manage-fields.php:
|
3047 |
msgid "Guernsey"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: admin/manage-fields.php:
|
3051 |
msgid "Guinea"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: admin/manage-fields.php:
|
3055 |
msgid "Guinea-Bissau"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: admin/manage-fields.php:
|
3059 |
msgid "Guyana"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: admin/manage-fields.php:
|
3063 |
msgid "Haiti"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: admin/manage-fields.php:
|
3067 |
msgid "Heard Island and McDonald Islands"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: admin/manage-fields.php:
|
3071 |
msgid "Honduras"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: admin/manage-fields.php:
|
3075 |
msgid "Hong Kong"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: admin/manage-fields.php:
|
3079 |
msgid "Hungary"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: admin/manage-fields.php:
|
3083 |
msgid "Iceland"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: admin/manage-fields.php:
|
3087 |
msgid "India"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: admin/manage-fields.php:
|
3091 |
msgid "Indonesia"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: admin/manage-fields.php:
|
3095 |
msgid "Iran"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: admin/manage-fields.php:
|
3099 |
msgid "Iraq"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: admin/manage-fields.php:
|
3103 |
msgid "Ireland"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: admin/manage-fields.php:
|
3107 |
msgid "Isle of Man"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: admin/manage-fields.php:
|
3111 |
msgid "Israel"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: admin/manage-fields.php:
|
3115 |
msgid "Italy"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: admin/manage-fields.php:
|
3119 |
msgid "Ivory Coast"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: admin/manage-fields.php:
|
3123 |
msgid "Jamaica"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: admin/manage-fields.php:
|
3127 |
msgid "Japan"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: admin/manage-fields.php:
|
3131 |
msgid "Jersey"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: admin/manage-fields.php:
|
3135 |
msgid "Jordan"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: admin/manage-fields.php:
|
3139 |
msgid "Kazakhstan"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: admin/manage-fields.php:
|
3143 |
msgid "Kenya"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: admin/manage-fields.php:
|
3147 |
msgid "Kiribati"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: admin/manage-fields.php:
|
3151 |
msgid "Kosovo"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: admin/manage-fields.php:
|
3155 |
msgid "Kuwait"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: admin/manage-fields.php:
|
3159 |
msgid "Kyrgyzstan"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: admin/manage-fields.php:
|
3163 |
msgid "Laos"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: admin/manage-fields.php:
|
3167 |
msgid "Latvia"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: admin/manage-fields.php:
|
3171 |
msgid "Lebanon"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: admin/manage-fields.php:
|
3175 |
msgid "Lesotho"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: admin/manage-fields.php:
|
3179 |
msgid "Liberia"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: admin/manage-fields.php:
|
3183 |
msgid "Libya"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: admin/manage-fields.php:
|
3187 |
msgid "Liechtenstein"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: admin/manage-fields.php:
|
3191 |
msgid "Lithuania"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: admin/manage-fields.php:
|
3195 |
msgid "Luxembourg"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: admin/manage-fields.php:
|
3199 |
msgid "Macao"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: admin/manage-fields.php:
|
3203 |
msgid "Macedonia"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: admin/manage-fields.php:
|
3207 |
msgid "Madagascar"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: admin/manage-fields.php:
|
3211 |
msgid "Malawi"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: admin/manage-fields.php:
|
3215 |
msgid "Malaysia"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: admin/manage-fields.php:
|
3219 |
msgid "Maldives"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: admin/manage-fields.php:
|
3223 |
msgid "Mali"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: admin/manage-fields.php:
|
3227 |
msgid "Malta"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: admin/manage-fields.php:
|
3231 |
msgid "Marshall Islands"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: admin/manage-fields.php:
|
3235 |
msgid "Martinique"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: admin/manage-fields.php:
|
3239 |
msgid "Mauritania"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: admin/manage-fields.php:
|
3243 |
msgid "Mauritius"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: admin/manage-fields.php:
|
3247 |
msgid "Mayotte"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: admin/manage-fields.php:
|
3251 |
msgid "Mexico"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: admin/manage-fields.php:
|
3255 |
msgid "Micronesia"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: admin/manage-fields.php:
|
3259 |
msgid "Moldova"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: admin/manage-fields.php:
|
3263 |
msgid "Monaco"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: admin/manage-fields.php:
|
3267 |
msgid "Mongolia"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: admin/manage-fields.php:
|
3271 |
msgid "Montenegro"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: admin/manage-fields.php:
|
3275 |
msgid "Montserrat"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: admin/manage-fields.php:
|
3279 |
msgid "Morocco"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: admin/manage-fields.php:
|
3283 |
msgid "Mozambique"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: admin/manage-fields.php:
|
3287 |
msgid "Myanmar"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: admin/manage-fields.php:
|
3291 |
msgid "Namibia"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: admin/manage-fields.php:
|
3295 |
msgid "Nauru"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: admin/manage-fields.php:
|
3299 |
msgid "Nepal"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: admin/manage-fields.php:
|
3303 |
msgid "Netherlands"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: admin/manage-fields.php:
|
3307 |
msgid "New Caledonia"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: admin/manage-fields.php:
|
3311 |
msgid "New Zealand"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: admin/manage-fields.php:
|
3315 |
msgid "Nicaragua"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: admin/manage-fields.php:
|
3319 |
msgid "Niger"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: admin/manage-fields.php:
|
3323 |
msgid "Nigeria"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: admin/manage-fields.php:
|
3327 |
msgid "Niue"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: admin/manage-fields.php:
|
3331 |
msgid "Norfolk Island"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: admin/manage-fields.php:
|
3335 |
msgid "North Korea"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: admin/manage-fields.php:
|
3339 |
msgid "Northern Mariana Islands"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: admin/manage-fields.php:
|
3343 |
msgid "Norway"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: admin/manage-fields.php:
|
3347 |
msgid "Oman"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: admin/manage-fields.php:
|
3351 |
msgid "Pakistan"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: admin/manage-fields.php:
|
3355 |
msgid "Palau"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: admin/manage-fields.php:
|
3359 |
msgid "Palestinian Territory"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: admin/manage-fields.php:
|
3363 |
msgid "Panama"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: admin/manage-fields.php:
|
3367 |
msgid "Papua New Guinea"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: admin/manage-fields.php:
|
3371 |
msgid "Paraguay"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: admin/manage-fields.php:
|
3375 |
msgid "Peru"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: admin/manage-fields.php:
|
3379 |
msgid "Philippines"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: admin/manage-fields.php:
|
3383 |
msgid "Pitcairn"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: admin/manage-fields.php:
|
3387 |
msgid "Poland"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: admin/manage-fields.php:
|
3391 |
msgid "Portugal"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: admin/manage-fields.php:
|
3395 |
msgid "Puerto Rico"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: admin/manage-fields.php:
|
3399 |
msgid "Qatar"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: admin/manage-fields.php:
|
3403 |
msgid "Republic of the Congo"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: admin/manage-fields.php:
|
3407 |
msgid "Reunion"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: admin/manage-fields.php:
|
3411 |
msgid "Romania"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: admin/manage-fields.php:
|
3415 |
msgid "Russia"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
#: admin/manage-fields.php:
|
3419 |
msgid "Rwanda"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: admin/manage-fields.php:
|
3423 |
msgid "Saint Barthelemy"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: admin/manage-fields.php:
|
3427 |
msgid "Saint Helena"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: admin/manage-fields.php:
|
3431 |
msgid "Saint Kitts and Nevis"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: admin/manage-fields.php:
|
3435 |
msgid "Saint Lucia"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: admin/manage-fields.php:
|
3439 |
msgid "Saint Martin"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
#: admin/manage-fields.php:
|
3443 |
msgid "Saint Pierre and Miquelon"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: admin/manage-fields.php:
|
3447 |
msgid "Saint Vincent and the Grenadines"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: admin/manage-fields.php:
|
3451 |
msgid "Samoa"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: admin/manage-fields.php:
|
3455 |
msgid "San Marino"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#: admin/manage-fields.php:
|
3459 |
msgid "Sao Tome and Principe"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: admin/manage-fields.php:
|
3463 |
msgid "Saudi Arabia"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
-
#: admin/manage-fields.php:
|
3467 |
msgid "Senegal"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: admin/manage-fields.php:
|
3471 |
msgid "Serbia"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: admin/manage-fields.php:
|
3475 |
msgid "Seychelles"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: admin/manage-fields.php:
|
3479 |
msgid "Sierra Leone"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: admin/manage-fields.php:
|
3483 |
msgid "Singapore"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: admin/manage-fields.php:
|
3487 |
msgid "Sint Maarten"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: admin/manage-fields.php:
|
3491 |
msgid "Slovakia"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: admin/manage-fields.php:
|
3495 |
msgid "Slovenia"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: admin/manage-fields.php:
|
3499 |
msgid "Solomon Islands"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: admin/manage-fields.php:
|
3503 |
msgid "Somalia"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: admin/manage-fields.php:
|
3507 |
msgid "South Africa"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: admin/manage-fields.php:
|
3511 |
msgid "South Georgia and the South Sandwich Islands"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: admin/manage-fields.php:
|
3515 |
msgid "South Korea"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: admin/manage-fields.php:
|
3519 |
msgid "South Sudan"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: admin/manage-fields.php:
|
3523 |
msgid "Spain"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: admin/manage-fields.php:
|
3527 |
msgid "Sri Lanka"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: admin/manage-fields.php:
|
3531 |
msgid "Sudan"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: admin/manage-fields.php:
|
3535 |
msgid "Suriname"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: admin/manage-fields.php:
|
3539 |
msgid "Svalbard and Jan Mayen"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: admin/manage-fields.php:
|
3543 |
msgid "Swaziland"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: admin/manage-fields.php:
|
3547 |
msgid "Sweden"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: admin/manage-fields.php:
|
3551 |
msgid "Switzerland"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: admin/manage-fields.php:
|
3555 |
msgid "Syria"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: admin/manage-fields.php:
|
3559 |
msgid "Taiwan"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: admin/manage-fields.php:
|
3563 |
msgid "Tajikistan"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: admin/manage-fields.php:
|
3567 |
msgid "Tanzania"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: admin/manage-fields.php:
|
3571 |
msgid "Thailand"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: admin/manage-fields.php:
|
3575 |
msgid "Togo"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: admin/manage-fields.php:
|
3579 |
msgid "Tokelau"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: admin/manage-fields.php:
|
3583 |
msgid "Tonga"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: admin/manage-fields.php:
|
3587 |
msgid "Trinidad and Tobago"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: admin/manage-fields.php:
|
3591 |
msgid "Tunisia"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: admin/manage-fields.php:
|
3595 |
msgid "Turkey"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: admin/manage-fields.php:
|
3599 |
msgid "Turkmenistan"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: admin/manage-fields.php:
|
3603 |
msgid "Turks and Caicos Islands"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: admin/manage-fields.php:
|
3607 |
msgid "Tuvalu"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: admin/manage-fields.php:
|
3611 |
msgid "U.S. Virgin Islands"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: admin/manage-fields.php:
|
3615 |
msgid "Uganda"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: admin/manage-fields.php:
|
3619 |
msgid "Ukraine"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: admin/manage-fields.php:
|
3623 |
msgid "United Arab Emirates"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: admin/manage-fields.php:
|
3627 |
msgid "United Kingdom"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: admin/manage-fields.php:
|
3631 |
msgid "United States"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: admin/manage-fields.php:
|
3635 |
msgid "United States Minor Outlying Islands"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: admin/manage-fields.php:
|
3639 |
msgid "Uruguay"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: admin/manage-fields.php:
|
3643 |
msgid "Uzbekistan"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: admin/manage-fields.php:
|
3647 |
msgid "Vanuatu"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: admin/manage-fields.php:
|
3651 |
msgid "Vatican"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: admin/manage-fields.php:
|
3655 |
msgid "Venezuela"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: admin/manage-fields.php:
|
3659 |
msgid "Vietnam"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: admin/manage-fields.php:
|
3663 |
msgid "Wallis and Futuna"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: admin/manage-fields.php:
|
3667 |
msgid "Western Sahara"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: admin/manage-fields.php:
|
3671 |
msgid "Yemen"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: admin/manage-fields.php:
|
3675 |
msgid "Zambia"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: admin/manage-fields.php:
|
3679 |
msgid "Zimbabwe"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: admin/manage-fields.php:
|
3683 |
msgid "Albania Lek"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#: admin/manage-fields.php:
|
3687 |
msgid "Afghanistan Afghani"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: admin/manage-fields.php:
|
3691 |
msgid "Argentina Peso"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: admin/manage-fields.php:
|
3695 |
msgid "Australia Dollar"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: admin/manage-fields.php:
|
3699 |
msgid "Azerbaijan New Manat"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#: admin/manage-fields.php:
|
3703 |
msgid "Bahamas Dollar"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: admin/manage-fields.php:
|
3707 |
msgid "Barbados Dollar"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: admin/manage-fields.php:
|
3711 |
msgid "Bangladeshi taka"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: admin/manage-fields.php:
|
3715 |
msgid "Belarus Ruble"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: admin/manage-fields.php:
|
3719 |
msgid "Belize Dollar"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: admin/manage-fields.php:
|
3723 |
msgid "Bermuda Dollar"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
-
#: admin/manage-fields.php:
|
3727 |
msgid "Bolivia Boliviano"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: admin/manage-fields.php:
|
3731 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: admin/manage-fields.php:
|
3735 |
msgid "Botswana Pula"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: admin/manage-fields.php:
|
3739 |
msgid "Bulgaria Lev"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: admin/manage-fields.php:
|
3743 |
msgid "Brazil Real"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
-
#: admin/manage-fields.php:
|
3747 |
msgid "Brunei Darussalam Dollar"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
-
#: admin/manage-fields.php:
|
3751 |
msgid "Cambodia Riel"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: admin/manage-fields.php:
|
3755 |
msgid "Canada Dollar"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: admin/manage-fields.php:
|
3759 |
msgid "Cayman Islands Dollar"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: admin/manage-fields.php:
|
3763 |
msgid "Chile Peso"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: admin/manage-fields.php:
|
3767 |
msgid "China Yuan Renminbi"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: admin/manage-fields.php:
|
3771 |
msgid "Colombia Peso"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: admin/manage-fields.php:
|
3775 |
msgid "Costa Rica Colon"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: admin/manage-fields.php:
|
3779 |
msgid "Croatia Kuna"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: admin/manage-fields.php:
|
3783 |
msgid "Cuba Peso"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: admin/manage-fields.php:
|
3787 |
msgid "Czech Republic Koruna"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: admin/manage-fields.php:
|
3791 |
msgid "Denmark Krone"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: admin/manage-fields.php:
|
3795 |
msgid "Dominican Republic Peso"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: admin/manage-fields.php:
|
3799 |
msgid "East Caribbean Dollar"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: admin/manage-fields.php:
|
3803 |
msgid "Egypt Pound"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: admin/manage-fields.php:
|
3807 |
msgid "El Salvador Colon"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: admin/manage-fields.php:
|
3811 |
msgid "Estonia Kroon"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: admin/manage-fields.php:
|
3815 |
msgid "Euro"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: admin/manage-fields.php:
|
3819 |
msgid "Falkland Islands (Malvinas) Pound"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: admin/manage-fields.php:
|
3823 |
msgid "Fiji Dollar"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: admin/manage-fields.php:
|
3827 |
msgid "Ghana Cedis"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: admin/manage-fields.php:
|
3831 |
msgid "Gibraltar Pound"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: admin/manage-fields.php:
|
3835 |
msgid "Guatemala Quetzal"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: admin/manage-fields.php:
|
3839 |
msgid "Guernsey Pound"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: admin/manage-fields.php:
|
3843 |
msgid "Guyana Dollar"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: admin/manage-fields.php:
|
3847 |
msgid "Honduras Lempira"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: admin/manage-fields.php:
|
3851 |
msgid "Hong Kong Dollar"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
-
#: admin/manage-fields.php:
|
3855 |
msgid "Hungary Forint"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: admin/manage-fields.php:
|
3859 |
msgid "Iceland Krona"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: admin/manage-fields.php:
|
3863 |
msgid "India Rupee"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: admin/manage-fields.php:
|
3867 |
msgid "Indonesia Rupiah"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: admin/manage-fields.php:
|
3871 |
msgid "Iran Rial"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: admin/manage-fields.php:
|
3875 |
msgid "Isle of Man Pound"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: admin/manage-fields.php:
|
3879 |
msgid "Israel Shekel"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: admin/manage-fields.php:
|
3883 |
msgid "Jamaica Dollar"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: admin/manage-fields.php:
|
3887 |
msgid "Japan Yen"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: admin/manage-fields.php:
|
3891 |
msgid "Jersey Pound"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: admin/manage-fields.php:
|
3895 |
msgid "Kazakhstan Tenge"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: admin/manage-fields.php:
|
3899 |
msgid "Korea (North) Won"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: admin/manage-fields.php:
|
3903 |
msgid "Korea (South) Won"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: admin/manage-fields.php:
|
3907 |
msgid "Kyrgyzstan Som"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: admin/manage-fields.php:
|
3911 |
msgid "Laos Kip"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: admin/manage-fields.php:
|
3915 |
msgid "Latvia Lat"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: admin/manage-fields.php:
|
3919 |
msgid "Lebanon Pound"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: admin/manage-fields.php:
|
3923 |
msgid "Liberia Dollar"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: admin/manage-fields.php:
|
3927 |
msgid "Lithuania Litas"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: admin/manage-fields.php:
|
3931 |
msgid "Macedonia Denar"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: admin/manage-fields.php:
|
3935 |
msgid "Malaysia Ringgit"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: admin/manage-fields.php:
|
3939 |
msgid "Mauritius Rupee"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: admin/manage-fields.php:
|
3943 |
msgid "Mexico Peso"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#: admin/manage-fields.php:
|
3947 |
msgid "Mongolia Tughrik"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: admin/manage-fields.php:
|
3951 |
msgid "Mozambique Metical"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
-
#: admin/manage-fields.php:
|
3955 |
msgid "Namibia Dollar"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: admin/manage-fields.php:
|
3959 |
msgid "Nepal Rupee"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: admin/manage-fields.php:
|
3963 |
msgid "Netherlands Antilles Guilder"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: admin/manage-fields.php:
|
3967 |
msgid "New Zealand Dollar"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: admin/manage-fields.php:
|
3971 |
msgid "Nicaragua Cordoba"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: admin/manage-fields.php:
|
3975 |
msgid "Nigeria Naira"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: admin/manage-fields.php:
|
3979 |
msgid "Norway Krone"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: admin/manage-fields.php:
|
3983 |
msgid "Oman Rial"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: admin/manage-fields.php:
|
3987 |
msgid "Pakistan Rupee"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#: admin/manage-fields.php:
|
3991 |
msgid "Panama Balboa"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: admin/manage-fields.php:
|
3995 |
msgid "Paraguay Guarani"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: admin/manage-fields.php:
|
3999 |
msgid "Peru Nuevo Sol"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: admin/manage-fields.php:
|
4003 |
msgid "Philippines Peso"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#: admin/manage-fields.php:
|
4007 |
msgid "Poland Zloty"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: admin/manage-fields.php:
|
4011 |
msgid "Qatar Riyal"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: admin/manage-fields.php:
|
4015 |
msgid "Romania New Leu"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#: admin/manage-fields.php:
|
4019 |
msgid "Russia Ruble"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#: admin/manage-fields.php:
|
4023 |
msgid "Saint Helena Pound"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
#: admin/manage-fields.php:
|
4027 |
msgid "Saudi Arabia Riyal"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#: admin/manage-fields.php:
|
4031 |
msgid "Serbia Dinar"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#: admin/manage-fields.php:
|
4035 |
msgid "Seychelles Rupee"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#: admin/manage-fields.php:
|
4039 |
msgid "Singapore Dollar"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: admin/manage-fields.php:
|
4043 |
msgid "Solomon Islands Dollar"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#: admin/manage-fields.php:
|
4047 |
msgid "Somalia Shilling"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: admin/manage-fields.php:
|
4051 |
msgid "South Africa Rand"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: admin/manage-fields.php:
|
4055 |
msgid "Sri Lanka Rupee"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: admin/manage-fields.php:
|
4059 |
msgid "Sweden Krona"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: admin/manage-fields.php:
|
4063 |
msgid "Switzerland Franc"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: admin/manage-fields.php:
|
4067 |
msgid "Suriname Dollar"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: admin/manage-fields.php:
|
4071 |
msgid "Syria Pound"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#: admin/manage-fields.php:
|
4075 |
msgid "Taiwan New Dollar"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#: admin/manage-fields.php:
|
4079 |
msgid "Thailand Baht"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#: admin/manage-fields.php:
|
4083 |
msgid "Trinidad and Tobago Dollar"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
-
#: admin/manage-fields.php:
|
4087 |
msgid "Turkey Lira"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: admin/manage-fields.php:
|
4091 |
msgid "Tuvalu Dollar"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: admin/manage-fields.php:
|
4095 |
msgid "Ukraine Hryvna"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: admin/manage-fields.php:
|
4099 |
msgid "United Kingdom Pound"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: admin/manage-fields.php:
|
4103 |
msgid "Uganda Shilling"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: admin/manage-fields.php:
|
4107 |
msgid "US Dollar"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: admin/manage-fields.php:
|
4111 |
msgid "Uruguay Peso"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: admin/manage-fields.php:
|
4115 |
msgid "Uzbekistan Som"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
#: admin/manage-fields.php:
|
4119 |
msgid "Venezuela Bolivar"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
-
#: admin/manage-fields.php:
|
4123 |
msgid "Viet Nam Dong"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
-
#: admin/manage-fields.php:
|
4127 |
msgid "Yemen Rial"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
-
#: admin/manage-fields.php:
|
4131 |
msgid "Zimbabwe Dollar"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: admin/manage-fields.php:
|
4135 |
msgid ""
|
4136 |
"That field is already added in this form\n"
|
4137 |
""
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: admin/manage-fields.php:
|
4141 |
msgid ""
|
4142 |
"You must select a field\n"
|
4143 |
""
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: admin/manage-fields.php:
|
4147 |
msgid ""
|
4148 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4149 |
""
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: admin/manage-fields.php:
|
4153 |
msgid ""
|
4154 |
"The entered avatar size is not numerical\n"
|
4155 |
""
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: admin/manage-fields.php:
|
4159 |
msgid ""
|
4160 |
"The entered avatar size is not between 20 and 200\n"
|
4161 |
""
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: admin/manage-fields.php:
|
4165 |
msgid ""
|
4166 |
"You must enter a value for the row number\n"
|
4167 |
""
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: admin/manage-fields.php:
|
4171 |
msgid ""
|
4172 |
"The entered row number is not numerical\n"
|
4173 |
""
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: admin/manage-fields.php:
|
4177 |
msgid ""
|
4178 |
"You must enter the site key\n"
|
4179 |
""
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: admin/manage-fields.php:
|
4183 |
msgid ""
|
4184 |
"You must enter the secret key\n"
|
4185 |
""
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: admin/manage-fields.php:
|
4189 |
msgid ""
|
4190 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4191 |
""
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: admin/manage-fields.php:
|
4195 |
msgid ""
|
4196 |
"You must enter a value for the date-format\n"
|
4197 |
""
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: admin/manage-fields.php:
|
4201 |
msgid ""
|
4202 |
"The meta-name cannot be empty\n"
|
4203 |
""
|
4204 |
msgstr ""
|
4205 |
|
4206 |
-
#: admin/manage-fields.php:
|
4207 |
msgid ""
|
4208 |
"That meta-name is already in use\n"
|
4209 |
""
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: admin/manage-fields.php:
|
4213 |
msgid ""
|
4214 |
"That meta-name can't be used, please choose another\n"
|
4215 |
""
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: admin/manage-fields.php:
|
4219 |
msgid ""
|
4220 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4221 |
""
|
4222 |
msgstr ""
|
4223 |
|
4224 |
-
#: admin/manage-fields.php:
|
4225 |
msgid ""
|
4226 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4227 |
""
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: admin/manage-fields.php:
|
4231 |
msgid ""
|
4232 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4233 |
""
|
4234 |
msgstr ""
|
4235 |
|
4236 |
-
#: admin/manage-fields.php:
|
4237 |
msgid ""
|
4238 |
"Please select at least one user role\n"
|
4239 |
""
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: admin/manage-fields.php:
|
4243 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
-
#: admin/manage-fields.php:
|
4247 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: admin/manage-fields.php:
|
4251 |
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."
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: admin/manage-fields.php:
|
4255 |
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."
|
4256 |
msgstr ""
|
4257 |
|
4258 |
-
#: admin/manage-fields.php:
|
4259 |
msgid "Search Location"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
-
#: admin/pms-cross-promotion.php:
|
4263 |
msgid "Paid Accounts"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: admin/pms-cross-promotion.php:
|
4267 |
msgid "Paid Member Subscriptions - a free WordPress plugin"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: admin/pms-cross-promotion.php:
|
4271 |
msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
|
4272 |
msgstr ""
|
4273 |
|
4274 |
-
#: admin/pms-cross-promotion.php:
|
4275 |
msgid "Paid & Free Subscriptions"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: admin/pms-cross-promotion.php:
|
4279 |
msgid "Restrict Content"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
-
#: admin/pms-cross-promotion.php:
|
4283 |
msgid "Member Management"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: admin/pms-cross-promotion.php:
|
4287 |
msgid "Email Templates"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: admin/pms-cross-promotion.php:
|
4291 |
msgid "Account Management"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
-
#: admin/pms-cross-promotion.php:
|
4295 |
msgid "Subscription Management"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: admin/pms-cross-promotion.php:
|
4299 |
msgid "Payment Management"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: admin/pms-cross-promotion.php:
|
4303 |
msgid "Plugin is Active"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
-
#: admin/pms-cross-promotion.php:
|
4307 |
msgid "Plugin has been activated"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
-
#: admin/pms-cross-promotion.php:
|
4311 |
msgid "Plugin has been deactivated."
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: admin/pms-cross-promotion.php:
|
4315 |
msgid "Accept user payments, create subscription plans and restrict content on your website."
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: admin/pms-cross-promotion.php:
|
4319 |
msgid "Step by Step Quick Setup"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: admin/pms-cross-promotion.php:
|
4323 |
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4324 |
msgstr ""
|
4325 |
|
@@ -4387,378 +4387,378 @@ msgstr ""
|
|
4387 |
msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
-
#: admin/private-website.php:159, features/functions.php:
|
4391 |
msgid "Save Changes"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: admin/register-version.php:
|
4395 |
msgid "Profile Builder Register"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: admin/register-version.php:
|
4399 |
msgid "Register Your Version"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: admin/register-version.php:
|
4403 |
msgid "Register Version"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: admin/register-version.php:
|
4407 |
msgid "Register your version of %s"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
-
#: admin/register-version.php:
|
4411 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: admin/register-version.php:
|
4415 |
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
4416 |
msgstr ""
|
4417 |
|
4418 |
-
#: admin/register-version.php:
|
4419 |
msgid " Serial Number:"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
-
#: admin/register-version.php:
|
4423 |
msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: admin/register-version.php:
|
4427 |
msgid "The serial number couldn't be validated because it expired!"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: admin/register-version.php:
|
4431 |
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: admin/register-version.php:
|
4435 |
msgid "The serial number is about to expire soon!"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#: admin/register-version.php:
|
4439 |
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: admin/register-version.php:
|
4443 |
msgid "The serial number entered couldn't be validated!"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: admin/register-version.php:
|
4447 |
msgid "The serial number was successfully validated!"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: admin/register-version.php:
|
4451 |
msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: admin/register-version.php:
|
4455 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: admin/register-version.php:
|
4459 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: admin/register-version.php:
|
4463 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: admin/register-version.php:
|
4467 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
-
#: features/functions.php:
|
4471 |
msgid "GDPR Checkbox"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
-
#: features/functions.php:
|
4475 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: features/functions.php:
|
4479 |
msgid "Strength indicator"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: features/functions.php:
|
4483 |
msgid "Very Weak"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: features/functions.php:
|
4487 |
msgid "Minimum length of %d characters."
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: features/functions.php:
|
4491 |
msgid "The password must have a minimum strength of %s"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: features/functions.php:
|
4495 |
msgid "This field is required"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: features/functions.php:
|
4499 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
-
#: features/functions.php:
|
4503 |
msgid "Incorrect phone number"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: features/functions.php:
|
4507 |
msgid "Content"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
-
#: features/functions.php:
|
4511 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4512 |
msgstr ""
|
4513 |
|
4514 |
-
#: features/functions.php:
|
4515 |
msgid "<br><br>You can visit your site at "
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: features/functions.php:
|
4519 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: features/functions.php:
|
4523 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
-
#: features/functions.php:
|
4527 |
msgid "You are not currently logged in."
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
#: front-end/class-formbuilder.php:
|
4531 |
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
-
#: front-end/class-formbuilder.php:
|
4535 |
msgid "You must be logged in to edit your profile."
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: front-end/class-formbuilder.php:
|
4539 |
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: front-end/class-formbuilder.php:
|
4543 |
msgid "Log out of this account."
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: front-end/class-formbuilder.php:
|
4547 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: front-end/class-formbuilder.php:
|
4551 |
msgid "This message is only visible by administrators"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: front-end/class-formbuilder.php:
|
4555 |
msgid "Users can register themselves or you can manually create users here."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: front-end/class-formbuilder.php:
|
4559 |
msgid "Only an administrator can add new users."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: front-end/class-formbuilder.php:
|
4563 |
msgid "You are not allowed to do this."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: front-end/class-formbuilder.php:
|
4567 |
msgid "There was an error in the submitted form"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
-
#: front-end/class-formbuilder.php:
|
4571 |
msgid "Your profile has been successfully updated!"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
-
#: front-end/class-formbuilder.php:
|
4575 |
msgid "The account %1s has been successfully created!"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
-
#: front-end/class-formbuilder.php:
|
4579 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
-
#: front-end/class-formbuilder.php:
|
4583 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4584 |
msgstr ""
|
4585 |
|
4586 |
-
#: front-end/class-formbuilder.php:
|
4587 |
msgid "Add User"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
-
#: front-end/class-formbuilder.php:
|
4591 |
msgid "Send these credentials via email."
|
4592 |
msgstr ""
|
4593 |
|
4594 |
-
#: front-end/class-formbuilder.php:
|
4595 |
msgid "There are no other users to edit"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
-
#: front-end/class-formbuilder.php:
|
4599 |
msgid "User to edit:"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
-
#: front-end/class-formbuilder.php:
|
4603 |
msgid "Select User"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
-
#: front-end/class-formbuilder.php:
|
4607 |
msgid "Something went wrong. Please try again!"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
-
#: front-end/login.php:
|
4611 |
msgid "ERROR"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
-
#: front-end/login.php:
|
4615 |
msgid "The password you entered is incorrect."
|
4616 |
msgstr ""
|
4617 |
|
4618 |
-
#: front-end/login.php:
|
4619 |
msgid "Invalid username."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: front-end/login.php:
|
4623 |
msgid "Invalid username or email."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
-
#: front-end/login.php:
|
4627 |
msgid "Invalid email."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
-
#: front-end/login.php:
|
4631 |
msgid "Password Lost and Found."
|
4632 |
msgstr ""
|
4633 |
|
4634 |
-
#: front-end/login.php:
|
4635 |
msgid "Lost your password?"
|
4636 |
msgstr ""
|
4637 |
|
4638 |
-
#: front-end/login.php:
|
4639 |
msgid "Both fields are empty."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: front-end/login.php:
|
4643 |
msgid "Log out of this account"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
-
#: front-end/login.php:
|
4647 |
msgid "Log out »"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
-
#: front-end/login.php:
|
4651 |
msgid "You are currently logged in as %1$s. %2$s"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
-
#: front-end/login.php:
|
4655 |
msgid "Username or Email"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: front-end/logout.php:
|
4659 |
msgid "You are currently logged in as %s. "
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: front-end/recover.php:
|
4663 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: front-end/recover.php:
|
4667 |
msgid "Reset Password"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: front-end/recover.php:
|
4671 |
msgid "Please enter your username or email address."
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: front-end/recover.php:
|
4675 |
msgid "Username or E-mail"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: front-end/recover.php:
|
4679 |
msgid "Please enter your email address."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: front-end/recover.php:
|
4683 |
msgid "You will receive a link to create a new password via email."
|
4684 |
msgstr ""
|
4685 |
|
4686 |
-
#: front-end/recover.php:
|
4687 |
msgid "Get New Password"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
-
#: front-end/recover.php:
|
4691 |
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: front-end/recover.php:
|
4695 |
msgid "Password Reset from \"%1$s\""
|
4696 |
msgstr ""
|
4697 |
|
4698 |
-
#: front-end/recover.php:
|
4699 |
msgid "You have successfully reset your password."
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#: front-end/recover.php:
|
4703 |
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
4704 |
msgstr ""
|
4705 |
|
4706 |
-
#: front-end/recover.php:
|
4707 |
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
-
#: front-end/recover.php:
|
4711 |
msgid "You are already logged in. You can change your password on the edit profile form."
|
4712 |
msgstr ""
|
4713 |
|
4714 |
-
#: front-end/recover.php:
|
4715 |
msgid "The password must not be empty!"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
-
#: front-end/recover.php:
|
|
|
|
|
|
|
|
|
4719 |
msgid "The entered passwords don't match!"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: front-end/recover.php:
|
4723 |
msgid "The password must have the minimum length of %s characters"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
-
#: front-end/recover.php:
|
4727 |
msgid "Your password has been successfully changed!"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
-
#: front-end/recover.php:
|
4731 |
msgid "The username entered wasn't found in the database!"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
-
#: front-end/recover.php:
|
4735 |
msgid "Please check that you entered the correct username."
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: front-end/recover.php:
|
4739 |
msgid "The email address entered wasn't found in the database!"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#: front-end/recover.php:
|
4743 |
msgid "Please check that you entered the correct email address."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: front-end/recover.php:
|
4747 |
msgid "Check your e-mail for the confirmation link."
|
4748 |
msgstr ""
|
4749 |
|
4750 |
-
#: front-end/recover.php:
|
4751 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: front-end/recover.php:
|
4755 |
msgid "ERROR:"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: front-end/recover.php:417
|
4759 |
-
msgid "Invalid key!"
|
4760 |
-
msgstr ""
|
4761 |
-
|
4762 |
#: front-end/register.php:56
|
4763 |
msgid "Invalid activation key!"
|
4764 |
msgstr ""
|
@@ -4775,7 +4775,7 @@ msgstr ""
|
|
4775 |
msgid "Your email was successfully confirmed."
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: front-end/register.php:125, features/email-confirmation/email-confirmation.php:
|
4779 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4780 |
msgstr ""
|
4781 |
|
@@ -4783,7 +4783,7 @@ msgstr ""
|
|
4783 |
msgid "This username is already activated!"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: front-end/register.php:71, features/email-confirmation/email-confirmation.php:
|
4787 |
msgid "Could not create user!"
|
4788 |
msgstr ""
|
4789 |
|
@@ -5191,79 +5191,79 @@ msgstr ""
|
|
5191 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: features/admin-approval/admin-approval.php:
|
5195 |
msgid "Admin Approval"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: features/admin-approval/admin-approval.php:
|
5199 |
msgid "Do you want to"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: features/admin-approval/admin-approval.php:
|
5203 |
msgid "Your session has expired! Please refresh the page and try again."
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: features/admin-approval/admin-approval.php:
|
5207 |
msgid "You either don't have permission for that action or there was an error!"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: features/admin-approval/admin-approval.php:
|
5211 |
msgid "User successfully deleted!"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: features/admin-approval/admin-approval.php:
|
5215 |
msgid "User successfully unapproved!"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: features/admin-approval/admin-approval.php:
|
5219 |
msgid "User successfully approved!"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: features/admin-approval/admin-approval.php:
|
5223 |
msgid "Users successfully deleted!"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: features/admin-approval/admin-approval.php:
|
5227 |
msgid "Users successfully unapproved!"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: features/admin-approval/admin-approval.php:
|
5231 |
msgid "Users successfully approved!"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: features/admin-approval/admin-approval.php:
|
5235 |
msgid "Your account on %1$s has been unapproved!"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: features/admin-approval/admin-approval.php:
|
5239 |
msgid "unapproved"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: features/admin-approval/admin-approval.php:
|
5243 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: features/admin-approval/admin-approval.php:
|
5247 |
msgid "Your account on %1$s has been approved!"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: features/admin-approval/admin-approval.php:
|
5251 |
msgid "approved"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: features/admin-approval/admin-approval.php:
|
5255 |
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: features/admin-approval/admin-approval.php:
|
5259 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: features/admin-approval/admin-approval.php:
|
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 |
|
@@ -5287,15 +5287,15 @@ msgstr ""
|
|
5287 |
msgid "Unapprove"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:
|
5291 |
msgid "Firstname"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:
|
5295 |
msgid "Lastname"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:
|
5299 |
msgid "Role"
|
5300 |
msgstr ""
|
5301 |
|
@@ -5343,11 +5343,11 @@ 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 |
|
5350 |
-
#: features/content-restriction/class-elementor-content-restriction.php:77, features/content-restriction/content-restriction-meta-box.php:
|
5351 |
msgid "Profile Builder Content Restriction"
|
5352 |
msgstr ""
|
5353 |
|
@@ -5367,7 +5367,7 @@ msgstr ""
|
|
5367 |
msgid "Allow users which have the specified role to see this content."
|
5368 |
msgstr ""
|
5369 |
|
5370 |
-
#: features/content-restriction/class-elementor-content-restriction.php:116, features/content-restriction/content-restriction-meta-box.php:
|
5371 |
msgid "Restriction Messages"
|
5372 |
msgstr ""
|
5373 |
|
@@ -5379,7 +5379,7 @@ msgstr ""
|
|
5379 |
msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template."
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: features/content-restriction/class-elementor-content-restriction.php:132, features/content-restriction/content-restriction-meta-box.php:
|
5383 |
msgid "Enable Custom Messages"
|
5384 |
msgstr ""
|
5385 |
|
@@ -5403,131 +5403,131 @@ msgstr ""
|
|
5403 |
msgid "Select Template"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: features/content-restriction/content-restriction-filtering.php:
|
5407 |
msgid "You must be logged in to view the comments."
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#: features/content-restriction/content-restriction-filtering.php:
|
5411 |
msgid "Comments are restricted for your user role."
|
5412 |
msgstr ""
|
5413 |
|
5414 |
-
#: features/content-restriction/content-restriction-functions.php:
|
5415 |
msgid "This content is restricted for your user role."
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: features/content-restriction/content-restriction-functions.php:
|
5419 |
msgid "You must be logged in to view this content."
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5423 |
msgid "Display Options"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5427 |
msgid "Message"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5431 |
msgid "Redirect"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5435 |
msgid "Type of Restriction"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5439 |
msgid "Settings Default"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5443 |
msgid "Display For"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5447 |
msgid "Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role."
|
5448 |
msgstr ""
|
5449 |
|
5450 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5451 |
msgid "Checking any user role will show this %s only to users that have one of those user roles assigned."
|
5452 |
msgstr ""
|
5453 |
|
5454 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5455 |
msgid "Restriction Redirect URL"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5459 |
msgid "Enable Custom Redirect URL"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5463 |
msgid "Check if you wish to add a custom redirect URL for this %s."
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5467 |
msgid "Custom Redirect URL"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5471 |
msgid "Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly."
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5475 |
msgid "Check if you wish to add custom messages for this %s."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5479 |
msgid "Messages for logged-out users"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: features/content-restriction/content-restriction-meta-box.php:
|
5483 |
msgid "Messages for logged-in users"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: features/content-restriction/content-restriction.php:
|
5487 |
msgid "Content Restriction Settings"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
-
#: features/content-restriction/content-restriction.php:
|
5491 |
msgid "Enable Content Restriction"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
-
#: features/content-restriction/content-restriction.php:
|
5495 |
msgid "Activate Content Restriction"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: features/content-restriction/content-restriction.php:
|
5499 |
msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message."
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#: features/content-restriction/content-restriction.php:
|
5503 |
msgid "If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content."
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: features/content-restriction/content-restriction.php:
|
5507 |
msgid "Redirect URL"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
-
#: features/content-restriction/content-restriction.php:
|
5511 |
msgid "Message for logged-out users"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: features/content-restriction/content-restriction.php:
|
5515 |
msgid "Message for logged-in users"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: features/content-restriction/content-restriction.php:
|
5519 |
msgid "Restricted Posts Preview"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: features/content-restriction/content-restriction.php:
|
5523 |
msgid "Show the first %s words of the post's content"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: features/content-restriction/content-restriction.php:
|
5527 |
msgid "Show the content before the \"more\" tag"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: features/content-restriction/content-restriction.php:
|
5531 |
msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it."
|
5532 |
msgstr ""
|
5533 |
|
@@ -5575,171 +5575,171 @@ msgstr ""
|
|
5575 |
msgid "All users have been successfully deleted"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
-
#: features/email-confirmation/class-email-confirmation.php:458, features/email-confirmation/class-email-confirmation.php:498, features/email-confirmation/email-confirmation.php:
|
5579 |
msgid "Users with Unconfirmed Email Address"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
-
#: features/email-confirmation/email-confirmation.php:
|
5583 |
msgid "Email notification resent to user"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: features/email-confirmation/email-confirmation.php:
|
5587 |
msgid "The selected user couldn't be deleted"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: features/email-confirmation/email-confirmation.php:
|
5591 |
msgid "There was an error performing that action!"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: features/email-confirmation/email-confirmation.php:
|
5595 |
msgid "[%1$s] Activate %2$s"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
-
#: features/email-confirmation/email-confirmation.php:
|
5599 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5600 |
msgstr ""
|
5601 |
|
5602 |
-
#: features/email-confirmation/email-confirmation.php:
|
5603 |
msgid "There was an error while trying to activate the user"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
-
#: features/email-confirmation/email-confirmation.php:
|
5607 |
msgid "That username is already activated!"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: features/email-confirmation/email-confirmation.php:
|
5611 |
msgid "A new subscriber has (been) registered!"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
-
#: features/email-confirmation/email-confirmation.php:
|
5615 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: features/email-confirmation/email-confirmation.php:
|
5619 |
msgid "[%1$s] Your new account information"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: features/email-confirmation/email-confirmation.php:
|
5623 |
msgid "Your selected password at signup"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: features/email-confirmation/email-confirmation.php:
|
5627 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
5628 |
msgstr ""
|
5629 |
|
5630 |
-
#: features/email-confirmation/email-confirmation.php:
|
5631 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s "
|
5632 |
msgstr ""
|
5633 |
|
5634 |
-
#: features/email-confirmation/email-confirmation.php:
|
5635 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: features/login-widget/login-widget.php:
|
5639 |
msgid "This login widget lets you add a login form in the sidebar."
|
5640 |
msgstr ""
|
5641 |
|
5642 |
-
#: features/login-widget/login-widget.php:
|
5643 |
msgid "Profile Builder Login Widget"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
-
#: features/login-widget/login-widget.php:
|
5647 |
msgid "Title:"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: features/login-widget/login-widget.php:
|
5651 |
msgid "After login redirect URL (optional):"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: features/login-widget/login-widget.php:
|
5655 |
msgid "Register page URL (optional):"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: features/login-widget/login-widget.php:
|
5659 |
msgid "Password Recovery page URL (optional):"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
-
#: features/roles-editor/roles-editor.php:
|
5663 |
msgid "Capability"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
#: features/roles-editor/roles-editor.php:
|
5667 |
msgid "You can't delete this capability from your role."
|
5668 |
msgstr ""
|
5669 |
|
5670 |
-
#: features/roles-editor/roles-editor.php:
|
5671 |
msgid "Add New Role"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
-
#: features/roles-editor/roles-editor.php:
|
5675 |
msgid "Edit Role"
|
5676 |
msgstr ""
|
5677 |
|
5678 |
-
#: features/roles-editor/roles-editor.php:
|
5679 |
msgid "New Role"
|
5680 |
msgstr ""
|
5681 |
|
5682 |
-
#: features/roles-editor/roles-editor.php:
|
5683 |
msgid "View Role"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
-
#: features/roles-editor/roles-editor.php:
|
5687 |
msgid "Search the Roles Editor"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#: features/roles-editor/roles-editor.php:
|
5691 |
msgid "No roles found"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: features/roles-editor/roles-editor.php:
|
5695 |
msgid "No roles found in trash"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: features/roles-editor/roles-editor.php:
|
5699 |
msgid "Role updated."
|
5700 |
msgstr ""
|
5701 |
|
5702 |
-
#: features/roles-editor/roles-editor.php:
|
5703 |
msgid "Custom field updated."
|
5704 |
msgstr ""
|
5705 |
|
5706 |
-
#: features/roles-editor/roles-editor.php:
|
5707 |
msgid "Custom field deleted."
|
5708 |
msgstr ""
|
5709 |
|
5710 |
-
#: features/roles-editor/roles-editor.php:
|
5711 |
msgid "Role created."
|
5712 |
msgstr ""
|
5713 |
|
5714 |
-
#: features/roles-editor/roles-editor.php:
|
5715 |
msgid "Role saved."
|
5716 |
msgstr ""
|
5717 |
|
5718 |
-
#: features/roles-editor/roles-editor.php:
|
5719 |
msgid "Role submitted."
|
5720 |
msgstr ""
|
5721 |
|
5722 |
-
#: features/roles-editor/roles-editor.php:
|
5723 |
msgid "Role scheduled for: <strong>%1$s</strong>"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
-
#: features/roles-editor/roles-editor.php:
|
5727 |
msgid "Role draft updated."
|
5728 |
msgstr ""
|
5729 |
|
5730 |
-
#: features/roles-editor/roles-editor.php:
|
5731 |
msgid "Role Name"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
-
#: features/roles-editor/roles-editor.php:
|
5735 |
msgid "Role Slug"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: features/roles-editor/roles-editor.php:
|
5739 |
msgid "Capabilities"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: features/roles-editor/roles-editor.php:
|
5743 |
msgid "Users"
|
5744 |
msgstr ""
|
5745 |
|
@@ -5759,11 +5759,11 @@ msgstr ""
|
|
5759 |
msgid "You can't delete your role."
|
5760 |
msgstr ""
|
5761 |
|
5762 |
-
#: features/roles-editor/roles-editor.php:
|
5763 |
msgid "Edit User Roles"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: features/upgrades/upgrades-functions.php:
|
5767 |
msgid "The usernames cannot be changed."
|
5768 |
msgstr ""
|
5769 |
|
@@ -6293,27 +6293,27 @@ msgstr ""
|
|
6293 |
msgid "No Edit-profile Forms found in trash"
|
6294 |
msgstr ""
|
6295 |
|
6296 |
-
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:
|
6297 |
msgid "Shortcode"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
-
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:
|
6301 |
msgid "(no title)"
|
6302 |
msgstr ""
|
6303 |
|
6304 |
-
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:
|
6305 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6306 |
msgstr ""
|
6307 |
|
6308 |
-
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:
|
6309 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6310 |
msgstr ""
|
6311 |
|
6312 |
-
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:
|
6313 |
msgid "The shortcode will be available after you publish this form."
|
6314 |
msgstr ""
|
6315 |
|
6316 |
-
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:
|
6317 |
msgid "Form Shortcode"
|
6318 |
msgstr ""
|
6319 |
|
@@ -6469,11 +6469,11 @@ msgstr ""
|
|
6469 |
msgid "Display name as"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
-
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:
|
6473 |
msgid "Registration Date"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
-
#: modules/user-listing/userlisting.php:163, modules/user-listing/userlisting.php:
|
6477 |
msgid "Number of Posts"
|
6478 |
msgstr ""
|
6479 |
|
@@ -6509,7 +6509,7 @@ msgstr ""
|
|
6509 |
msgid "Search all Fields"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
-
#: modules/user-listing/userlisting.php:228, modules/user-listing/userlisting.php:
|
6513 |
msgid "Faceted Menus"
|
6514 |
msgstr ""
|
6515 |
|
@@ -6561,19 +6561,19 @@ msgstr ""
|
|
6561 |
msgid "User not found"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: modules/user-listing/userlisting.php:843, modules/user-listing/userlisting.php:
|
6565 |
msgid "Jabber"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
-
#: modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:
|
6569 |
msgid "Yim"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
-
#: modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:
|
6573 |
msgid "Aim"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
-
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:
|
6577 |
msgid "Display Name"
|
6578 |
msgstr ""
|
6579 |
|
@@ -6581,255 +6581,255 @@ msgstr ""
|
|
6581 |
msgid "First/Lastname"
|
6582 |
msgstr ""
|
6583 |
|
6584 |
-
#: modules/user-listing/userlisting.php:1130, modules/user-listing/userlisting.php:
|
6585 |
msgid "Search Users by All Fields"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: modules/user-listing/userlisting.php:
|
6589 |
msgid "Click here to see more information about this user."
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: modules/user-listing/userlisting.php:
|
6593 |
msgid "Click here to see more information about this user"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
-
#: modules/user-listing/userlisting.php:
|
6597 |
msgid "More..."
|
6598 |
msgstr ""
|
6599 |
|
6600 |
-
#: modules/user-listing/userlisting.php:
|
6601 |
msgid "View Map"
|
6602 |
msgstr ""
|
6603 |
|
6604 |
-
#: modules/user-listing/userlisting.php:
|
6605 |
msgid "Click here to go back"
|
6606 |
msgstr ""
|
6607 |
|
6608 |
-
#: modules/user-listing/userlisting.php:
|
6609 |
msgid "Back"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
-
#: modules/user-listing/userlisting.php:
|
6613 |
msgid "You don't have any pagination settings on this userlisting!"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
-
#: modules/user-listing/userlisting.php:
|
6617 |
msgid "«« First"
|
6618 |
msgstr ""
|
6619 |
|
6620 |
-
#: modules/user-listing/userlisting.php:
|
6621 |
msgid "« Prev"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
-
#: modules/user-listing/userlisting.php:
|
6625 |
msgid "Next » "
|
6626 |
msgstr ""
|
6627 |
|
6628 |
-
#: modules/user-listing/userlisting.php:
|
6629 |
msgid "Last »»"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
-
#: modules/user-listing/userlisting.php:
|
6633 |
msgid "Show All"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
-
#: modules/user-listing/userlisting.php:
|
6637 |
msgid "Choose..."
|
6638 |
msgstr ""
|
6639 |
|
6640 |
-
#: modules/user-listing/userlisting.php:
|
6641 |
msgid "No options available"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#: modules/user-listing/userlisting.php:
|
6645 |
msgid "Remove All Filters"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
-
#: modules/user-listing/userlisting.php:
|
6649 |
msgid "Search"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#: modules/user-listing/userlisting.php:
|
6653 |
msgid "Clear Results"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
-
#: modules/user-listing/userlisting.php:
|
6657 |
msgid "Extra shortcode parameters"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
-
#: modules/user-listing/userlisting.php:
|
6661 |
msgid "View all extra shortcode parameters"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
-
#: modules/user-listing/userlisting.php:
|
6665 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: modules/user-listing/userlisting.php:
|
6669 |
msgid "Example:"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: modules/user-listing/userlisting.php:
|
6673 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6674 |
msgstr ""
|
6675 |
|
6676 |
-
#: modules/user-listing/userlisting.php:
|
6677 |
msgid "displays only the users that you specified the user_id for"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
-
#: modules/user-listing/userlisting.php:
|
6681 |
msgid "displays all users except the ones you specified the user_id for"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
-
#: modules/user-listing/userlisting.php:
|
6685 |
msgid "Random (very slow on large databases > 10K user)"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
-
#: modules/user-listing/userlisting.php:
|
6689 |
msgid "Ascending"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
-
#: modules/user-listing/userlisting.php:
|
6693 |
msgid "Descending"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
-
#: modules/user-listing/userlisting.php:
|
6697 |
msgid "Roles to Display"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
-
#: modules/user-listing/userlisting.php:
|
6701 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
-
#: modules/user-listing/userlisting.php:
|
6705 |
msgid "Number of Users/Page"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
-
#: modules/user-listing/userlisting.php:
|
6709 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
-
#: modules/user-listing/userlisting.php:
|
6713 |
msgid "Default Sorting Criteria"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: modules/user-listing/userlisting.php:
|
6717 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
-
#: modules/user-listing/userlisting.php:
|
6721 |
msgid "Default Sorting Order"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
-
#: modules/user-listing/userlisting.php:
|
6725 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
-
#: modules/user-listing/userlisting.php:
|
6729 |
msgid "Avatar Size (All-userlisting)"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
-
#: modules/user-listing/userlisting.php:
|
6733 |
msgid "Set the avatar size on the all-userlisting only"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
-
#: modules/user-listing/userlisting.php:
|
6737 |
msgid "Avatar Size (Single-userlisting)"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
-
#: modules/user-listing/userlisting.php:
|
6741 |
msgid "Set the avatar size on the single-userlisting only"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
-
#: modules/user-listing/userlisting.php:
|
6745 |
msgid "Visible only to logged in users?"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: modules/user-listing/userlisting.php:
|
6749 |
msgid "The userlisting will only be visible only to the logged in users"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: modules/user-listing/userlisting.php:
|
6753 |
msgid "Visible to following Roles"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: modules/user-listing/userlisting.php:
|
6757 |
msgid "The userlisting will only be visible to the following roles"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
-
#: modules/user-listing/userlisting.php:
|
6761 |
msgid "Userlisting Settings"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
#: modules/user-listing/userlisting.php:
|
6765 |
msgid "Label"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
-
#: modules/user-listing/userlisting.php:
|
6769 |
msgid "Choose the facet name that appears on the frontend"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
-
#: modules/user-listing/userlisting.php:
|
6773 |
msgid "Facet Type"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
-
#: modules/user-listing/userlisting.php:
|
6777 |
msgid "Choose the facet menu type"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
-
#: modules/user-listing/userlisting.php:
|
6781 |
msgid "Facet Meta"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
-
#: modules/user-listing/userlisting.php:
|
6785 |
msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
|
6786 |
msgstr ""
|
6787 |
|
6788 |
-
#: modules/user-listing/userlisting.php:
|
6789 |
msgid "Behaviour"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
-
#: modules/user-listing/userlisting.php:
|
6793 |
msgid "Narrow the results"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
-
#: modules/user-listing/userlisting.php:
|
6797 |
msgid "Expand the results"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
-
#: modules/user-listing/userlisting.php:
|
6801 |
msgid "Choose how multiple selections affect the results"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: modules/user-listing/userlisting.php:
|
6805 |
msgid "Visible choices"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
-
#: modules/user-listing/userlisting.php:
|
6809 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
-
#: modules/user-listing/userlisting.php:
|
6813 |
msgid "Search Fields"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
-
#: modules/user-listing/userlisting.php:
|
6817 |
msgid "Choose the fields in which the Search Field will look in"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
-
#: modules/user-listing/userlisting.php:
|
6821 |
msgid "Search Settings"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
-
#: modules/user-listing/userlisting.php:
|
6825 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#: modules/user-listing/userlisting.php:
|
6829 |
msgid "You can find it in the Profile Builder menu."
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: modules/user-listing/userlisting.php:
|
6833 |
msgid "No results found!"
|
6834 |
msgstr ""
|
6835 |
|
@@ -6845,95 +6845,95 @@ msgstr ""
|
|
6845 |
msgid "Syncronize WCK Translation"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#: front-end/default-fields/blog-details/blog-details.php:
|
6849 |
msgid "Yes, I'd like to create a new site"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#: front-end/default-fields/blog-details/blog-details.php:
|
6853 |
msgid "Your site url will look like this:<br>"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#: front-end/default-fields/blog-details/blog-details.php:
|
6857 |
msgid "Site URL slug"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
-
#: front-end/default-fields/blog-details/blog-details.php:
|
6861 |
msgid "Site Title"
|
6862 |
msgstr ""
|
6863 |
|
6864 |
-
#: front-end/default-fields/blog-details/blog-details.php:
|
6865 |
msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
|
6866 |
msgstr ""
|
6867 |
|
6868 |
-
#: front-end/default-fields/email/email.php:
|
6869 |
msgid "You must enter a valid email address."
|
6870 |
msgstr ""
|
6871 |
|
6872 |
-
#: front-end/default-fields/email/email.php:
|
6873 |
msgid "This email is already reserved to be used soon."
|
6874 |
msgstr ""
|
6875 |
|
6876 |
-
#: front-end/default-fields/email/email.php:
|
6877 |
msgid "Please try a different one!"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: front-end/default-fields/email/email.php:
|
6881 |
msgid "This email is already in use."
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: front-end/default-fields/gdpr-delete/gdpr-delete.php:
|
6885 |
msgid "Type %s to confirm deleting your account and all data associated with it:"
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: front-end/default-fields/gdpr-delete/gdpr-delete.php:
|
6889 |
msgid "You did not type %s. Try again!"
|
6890 |
msgstr ""
|
6891 |
|
6892 |
-
#: front-end/default-fields/password-repeat/password-repeat.php:
|
6893 |
msgid "The passwords do not match"
|
6894 |
msgstr ""
|
6895 |
|
6896 |
-
#: front-end/default-fields/recaptcha/recaptcha.php:
|
6897 |
msgid "To use reCAPTCHA you must get an API key from"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
-
#: front-end/default-fields/recaptcha/recaptcha.php:
|
6901 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
6902 |
msgstr ""
|
6903 |
|
6904 |
-
#: front-end/default-fields/recaptcha/recaptcha.php:
|
6905 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
6906 |
msgstr ""
|
6907 |
|
6908 |
-
#: front-end/default-fields/recaptcha/recaptcha.php:
|
6909 |
msgid "Click the BACK button on your browser, and try again."
|
6910 |
msgstr ""
|
6911 |
|
6912 |
-
#: front-end/default-fields/user-role/user-role.php:
|
6913 |
msgid "As an administrator you cannot change your role."
|
6914 |
msgstr ""
|
6915 |
|
6916 |
-
#: front-end/default-fields/user-role/user-role.php:
|
6917 |
msgid "Only administrators can see this field on edit profile forms."
|
6918 |
msgstr ""
|
6919 |
|
6920 |
-
#: front-end/default-fields/user-role/user-role.php:
|
6921 |
msgid "You cannot register this user role"
|
6922 |
msgstr ""
|
6923 |
|
6924 |
-
#: front-end/default-fields/username/username.php:
|
6925 |
msgid "This username already exists."
|
6926 |
msgstr ""
|
6927 |
|
6928 |
-
#: front-end/default-fields/username/username.php:
|
6929 |
msgid "This username is invalid because it uses illegal characters."
|
6930 |
msgstr ""
|
6931 |
|
6932 |
-
#: front-end/default-fields/username/username.php:
|
6933 |
msgid "Please enter a valid username."
|
6934 |
msgstr ""
|
6935 |
|
6936 |
-
#: front-end/default-fields/username/username.php:
|
6937 |
msgid "This username is already reserved to be used soon."
|
6938 |
msgstr ""
|
6939 |
|
25 |
msgid "Choose (Single) User Listing to display under bbPress user Profile tab:"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../pb-add-on-bbpress/bbpress-page.php:82, ../pb-add-on-bbpress/bbpress-page.php:117, ../pb-add-on-woocommerce/woosync-page.php:80, ../pb-add-on-woocommerce/woosync-page.php:115, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:232, ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:307, features/content-restriction/content-restriction.php:136
|
29 |
msgid "None"
|
30 |
msgstr ""
|
31 |
|
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:318
|
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:324
|
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:335
|
245 |
msgid "About Yourself"
|
246 |
msgstr ""
|
247 |
|
313 |
msgid "Login Label"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: ../pb-add-on-custom-profile-menus/index.php:183, ../pb-add-on-custom-profile-menus/index.php:305, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:13, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:60, features/login-widget/login-widget.php:61
|
317 |
msgid "Login"
|
318 |
msgstr ""
|
319 |
|
321 |
msgid "Logout Label"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: ../pb-add-on-custom-profile-menus/index.php:191, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:16, front-end/class-formbuilder.php:179
|
325 |
msgid "Logout"
|
326 |
msgstr ""
|
327 |
|
349 |
msgid "Display Mode"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../pb-add-on-custom-profile-menus/index.php:255, features/content-restriction/content-restriction-meta-box.php:68
|
353 |
msgid "Logged In Users"
|
354 |
msgstr ""
|
355 |
|
369 |
msgid "Edit Profile"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../pb-add-on-custom-profile-menus/index.php:311, ../pb-add-on-custom-profile-menus/wppb-custom-profile-menus.php:74, front-end/class-formbuilder.php:436, front-end/login.php:428
|
373 |
msgid "Register"
|
374 |
msgstr ""
|
375 |
|
417 |
msgid "Toolbox"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: ../pb-add-on-customization-toolbox/index.php:147, ../pb-add-on-social-connect/index.php:237, admin/admin-functions.php:227, admin/general-settings.php:77, admin/general-settings.php:77
|
421 |
msgid "Settings"
|
422 |
msgstr ""
|
423 |
|
425 |
msgid "The email confirmation does not match your email address."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../pb-add-on-field-visibility/index.php:219, admin/admin-bar.php:64
|
429 |
msgid "Visibility"
|
430 |
msgstr ""
|
431 |
|
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:1321, features/functions.php:958, features/functions.php:965, 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:1321, features/functions.php:951, features/functions.php:965, 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:190
|
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:324, 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 |
|
690 |
+
#: ../pb-add-on-placeholder-labels/pbpl.php:172, ../pb-add-on-social-connect/index.php:325, admin/general-settings.php:128, admin/general-settings.php:143, admin/general-settings.php:192, admin/general-settings.php:237, admin/general-settings.php:311, admin/private-website.php:66, admin/private-website.php:133, admin/private-website.php:148, features/content-restriction/content-restriction.php:88, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:229, modules/multiple-forms/register-forms.php:230
|
691 |
msgid "No"
|
692 |
msgstr ""
|
693 |
|
875 |
msgid "Before you can access your account an administrator has to approve it. You will be notified via email."
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: ../pb-add-on-social-connect/index.php:390, features/admin-approval/admin-approval.php:181
|
879 |
msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
|
880 |
msgstr ""
|
881 |
|
883 |
msgid "You will be redirected in 5 seconds. If not, click %%."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: ../pb-add-on-social-connect/index.php:392, features/functions.php:1245
|
887 |
msgid "here"
|
888 |
msgstr ""
|
889 |
|
927 |
msgid "Profile Builder not active!"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: ../pb-add-on-social-connect/index.php:864, admin/admin-functions.php:38, admin/general-settings.php:9
|
931 |
msgid "General Settings"
|
932 |
msgstr ""
|
933 |
|
951 |
msgid "Country"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:6, ../pb-add-on-woocommerce/shipping-fields.php:6, admin/manage-fields.php:320, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:127
|
955 |
msgid "First Name"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: ../pb-add-on-woocommerce/billing-fields.php:7, ../pb-add-on-woocommerce/shipping-fields.php:7, admin/manage-fields.php:321, ../pb-add-on-customization-toolbox/includes/views/view-fields.php:133
|
959 |
msgid "Last Name"
|
960 |
msgstr ""
|
961 |
|
1067 |
msgid "Field Name"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: ../pb-add-on-woocommerce/index.php:304, admin/manage-fields.php:242
|
1071 |
msgid "Required"
|
1072 |
msgstr ""
|
1073 |
|
1075 |
msgid "Click to edit "
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: ../pb-add-on-woocommerce/index.php:391, front-end/default-fields/email/email.php:50
|
1079 |
msgid "The email you entered is not a valid email address."
|
1080 |
msgstr ""
|
1081 |
|
1123 |
msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: index.php:38
|
1127 |
msgid "%s is also activated. You need to deactivate it before activating this version of the plugin."
|
1128 |
msgstr ""
|
1129 |
|
1131 |
msgid "Communication Preferences"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: ../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:325, 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
|
1135 |
msgid "E-mail"
|
1136 |
msgstr ""
|
1137 |
|
1235 |
msgid "Edit this item"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: ../pb-add-on-mailchimp-integration/admin/mailchimp-page.php:171, features/functions.php:944, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:403, assets/lib/wck-api/wordpress-creation-kit.php:406
|
1239 |
msgid "Cancel"
|
1240 |
msgstr ""
|
1241 |
|
1459 |
msgid "Link with Twitter"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: admin/add-ons.php:12, admin/add-ons.php:12, admin/add-ons.php:195
|
1463 |
msgid "Add-Ons"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: admin/add-ons.php:43
|
1467 |
msgid "Recommended Plugins"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: admin/add-ons.php:74, admin/add-ons.php:145, admin/pms-cross-promotion.php:103
|
1471 |
msgid "Free"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: admin/add-ons.php:76
|
1475 |
msgid "Translate your Profile Builder forms with a WordPress translation plugin that anyone can use. It offers a simpler way to translate WordPress sites, with full support for WooCommerce and site builders."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: admin/add-ons.php:103, admin/add-ons.php:174, admin/pms-cross-promotion.php:138, admin/pms-cross-promotion.php:217
|
1479 |
msgid "Install Now"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: admin/add-ons.php:106, admin/add-ons.php:177, admin/add-ons.php:315, admin/pms-cross-promotion.php:142, admin/pms-cross-promotion.php:221
|
1483 |
msgid "Compatible with your version of Profile Builder."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: admin/add-ons.php:90, admin/add-ons.php:161, admin/add-ons.php:209, admin/add-ons.php:295, admin/pms-cross-promotion.php:91, admin/pms-cross-promotion.php:119, admin/pms-cross-promotion.php:198
|
1487 |
msgid "Deactivate"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: admin/add-ons.php:86, admin/add-ons.php:157, admin/add-ons.php:197, admin/add-ons.php:291, admin/pms-cross-promotion.php:79, admin/pms-cross-promotion.php:115, admin/pms-cross-promotion.php:194
|
1491 |
msgid "Activate"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: admin/add-ons.php:97, admin/add-ons.php:168, admin/pms-cross-promotion.php:88, admin/pms-cross-promotion.php:126, admin/pms-cross-promotion.php:205
|
1495 |
msgid "Plugin is <strong>active</strong>"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: admin/add-ons.php:95, admin/add-ons.php:166, admin/pms-cross-promotion.php:89, admin/pms-cross-promotion.php:124, admin/pms-cross-promotion.php:203
|
1499 |
msgid "Plugin is <strong>inactive</strong>"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: admin/add-ons.php:111, admin/add-ons.php:182, admin/pms-cross-promotion.php:147
|
1503 |
msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: admin/add-ons.php:147
|
1507 |
msgid "Accept user payments, create subscription plans and restrict content on your membership site."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: admin/add-ons.php:199, admin/pms-cross-promotion.php:81
|
1511 |
msgid "Downloading and installing..."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: admin/add-ons.php:200, admin/pms-cross-promotion.php:82
|
1515 |
msgid "Installation complete"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: admin/add-ons.php:202
|
1519 |
msgid "Add-On is Active"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: admin/add-ons.php:203
|
1523 |
msgid "Add-On has been activated"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: admin/add-ons.php:204, admin/pms-cross-promotion.php:86
|
1527 |
msgid "Retry Install"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: admin/add-ons.php:206, admin/add-ons.php:302
|
1531 |
msgid "Add-On is <strong>active</strong>"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: admin/add-ons.php:207, admin/add-ons.php:300
|
1535 |
msgid "Add-On is <strong>inactive</strong>"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: admin/add-ons.php:210
|
1539 |
msgid "Add-On has been deactivated."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: admin/add-ons.php:269
|
1543 |
msgid "Available with the Pro Version"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: admin/add-ons.php:267
|
1547 |
msgid "Available with the Hobbyist and Pro Versions"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: admin/add-ons.php:265
|
1551 |
msgid "Available with All Versions"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: admin/add-ons.php:332, front-end/class-formbuilder.php:439
|
1555 |
msgid "Update"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: admin/add-ons.php:333
|
1559 |
msgid "Not compatible with your version of Profile Builder."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: admin/add-ons.php:334
|
1563 |
msgid "Minimum required Profile Builder version:"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: admin/add-ons.php:324
|
1567 |
msgid "Upgrade Profile Builder"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: admin/add-ons.php:325
|
1571 |
msgid "Not compatible with Profile Builder"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: admin/add-ons.php:310
|
1575 |
msgid "Learn More"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: admin/add-ons.php:310, admin/pms-cross-promotion.php:135, admin/pms-cross-promotion.php:214
|
1579 |
msgid "Download Now"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: admin/add-ons.php:339
|
1583 |
msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: admin/add-ons.php:218
|
1587 |
msgid "Something went wrong, we could not connect to the server. Please try again later."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: admin/admin-bar.php:11
|
1591 |
msgid "Show/Hide the Admin Bar on the Front-End"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: admin/admin-bar.php:11, admin/admin-bar.php:48
|
1595 |
msgid "Admin Bar Settings"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: admin/admin-bar.php:54
|
1599 |
msgid "Choose which user roles view the admin bar in the front-end of the website."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: admin/admin-bar.php:63
|
1603 |
msgid "User-Role"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: admin/admin-bar.php:79, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:230
|
1607 |
msgid "Default"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: admin/admin-bar.php:80
|
1611 |
msgid "Show"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: admin/admin-bar.php:81, modules/user-listing/userlisting.php:1680
|
1615 |
msgid "Hide"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: admin/admin-functions.php:38
|
1619 |
msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: admin/admin-functions.php:42
|
1623 |
msgid "Display name publicly as - only appears on the Edit Profile page!"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: admin/admin-functions.php:45
|
1627 |
msgid "Blog Details - only appears on the Registration page!"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: admin/admin-functions.php:133
|
1631 |
msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:297
|
1635 |
msgid "Very weak"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:298, features/functions.php:754, features/functions.php:778
|
1639 |
msgid "Weak"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:299, features/functions.php:754, features/functions.php:778
|
1643 |
msgid "Medium"
|
1644 |
msgstr ""
|
1645 |
|
1646 |
+
#: admin/admin-functions.php:138, admin/general-settings.php:300, features/functions.php:754, features/functions.php:778
|
1647 |
msgid "Strong"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: admin/admin-functions.php:149
|
1651 |
msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: admin/admin-functions.php:190
|
1655 |
msgid "Save Settings"
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: admin/admin-functions.php:188
|
1659 |
msgid "Add Field"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: admin/admin-functions.php:201
|
1663 |
msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: admin/admin-functions.php:241
|
1667 |
msgid "View Profile Builder documentation"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: admin/admin-functions.php:241
|
1671 |
msgid "Docs"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: admin/admin-functions.php:261
|
1675 |
msgid "Check out the Customization Toolbox add-on which packs the most popular customization requests from Profile Builder."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
+
#: admin/admin-functions.php:263
|
1679 |
msgid "See details"
|
1680 |
msgstr ""
|
1681 |
|
1682 |
+
#: admin/admin-functions.php:264
|
1683 |
msgid "Dismiss this notice."
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: admin/basic-info.php:11, admin/basic-info.php:11
|
1687 |
msgid "Basic Information"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: admin/basic-info.php:31
|
1691 |
msgid "<strong>Profile Builder </strong> %s"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: admin/basic-info.php:32
|
1695 |
msgid "The best way to add front-end registration, edit profile and login forms."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: admin/basic-info.php:45
|
1699 |
msgid "You can see all the pages with Profile Builder form shortcodes here:"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: admin/basic-info.php:46
|
1703 |
msgid "View Form Pages"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: admin/basic-info.php:40
|
1707 |
msgid "Speed up the setup process by automatically creating the form pages:"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: admin/basic-info.php:41
|
1711 |
msgid "Create Form Pages"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: admin/basic-info.php:52
|
1715 |
msgid "Login Form"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: admin/basic-info.php:53
|
1719 |
msgid "Friction-less login using %s shortcode or a widget."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: admin/basic-info.php:56, modules/multiple-forms/register-forms.php:11, modules/multiple-forms/register-forms.php:12
|
1723 |
msgid "Registration Form"
|
1724 |
msgstr ""
|
1725 |
|
1726 |
+
#: admin/basic-info.php:57
|
1727 |
msgid "Beautiful registration forms fully customizable using the %s shortcode."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: admin/basic-info.php:60
|
1731 |
msgid "Edit Profile Form"
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: admin/basic-info.php:61
|
1735 |
msgid "Straight forward edit profile forms using %s shortcode."
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: admin/basic-info.php:67
|
1739 |
msgid "Extra Features"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: admin/basic-info.php:68
|
1743 |
msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
|
1744 |
msgstr ""
|
1745 |
|
1746 |
+
#: admin/basic-info.php:69
|
1747 |
msgid "Enable extra features"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: admin/basic-info.php:73
|
1751 |
msgid "Recover Password"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: admin/basic-info.php:74
|
1755 |
msgid "Allow users to recover their password in the front-end using the %s."
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: admin/basic-info.php:77
|
1759 |
msgid "Admin Approval (*)"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: admin/basic-info.php:78
|
1763 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: admin/basic-info.php:81
|
1767 |
msgid "Email Confirmation"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: admin/basic-info.php:82
|
1771 |
msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: admin/basic-info.php:85, admin/general-settings.php:11, features/content-restriction/content-restriction.php:27, features/content-restriction/content-restriction.php:27
|
1775 |
msgid "Content Restriction"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: admin/basic-info.php:86
|
1779 |
msgid "Restrict users from accessing certain pages, posts or custom post types based on user role or logged-in status."
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: admin/basic-info.php:89
|
1783 |
msgid "Minimum Password Length and Strength Meter"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: admin/basic-info.php:90
|
1787 |
msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: admin/basic-info.php:93
|
1791 |
msgid "Login with Email or Username"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: admin/basic-info.php:94
|
1795 |
msgid "Allow users to log in with their email or username when accessing your site."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: admin/basic-info.php:97, features/roles-editor/roles-editor.php:245, features/roles-editor/roles-editor.php:246, features/roles-editor/roles-editor.php:251, features/roles-editor/roles-editor.php:258
|
1799 |
msgid "Roles Editor"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: admin/basic-info.php:98
|
1803 |
msgid "Add, remove, clone and edit roles and also capabilities for these roles."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: admin/basic-info.php:111
|
1807 |
msgid "Customize Your Forms The Way You Want (*)"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: admin/basic-info.php:112
|
1811 |
msgid "With Extra Profile Fields you can create the exact registration form your project needs."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: admin/basic-info.php:116
|
1815 |
msgid "Get started with extra fields"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: admin/basic-info.php:114
|
1819 |
msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: admin/basic-info.php:119
|
1823 |
msgid "Avatar Upload"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: admin/basic-info.php:120
|
1827 |
msgid "Generic Uploads"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: admin/basic-info.php:121
|
1831 |
msgid "Agree To Terms Checkbox"
|
1832 |
msgstr ""
|
1833 |
|
1834 |
+
#: admin/basic-info.php:122
|
1835 |
msgid "Datepicker"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: admin/basic-info.php:123
|
1839 |
msgid "Timepicker"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: admin/basic-info.php:124
|
1843 |
msgid "Colorpicker"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: admin/basic-info.php:125
|
1847 |
msgid "reCAPTCHA"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: admin/basic-info.php:126
|
1851 |
msgid "Country Select"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
+
#: admin/basic-info.php:127
|
1855 |
msgid "Currency Select"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
+
#: admin/basic-info.php:128
|
1859 |
msgid "Timezone Select"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
+
#: admin/basic-info.php:132
|
1863 |
msgid "Input / Hidden Input"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: admin/basic-info.php:133
|
1867 |
msgid "Number"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: admin/basic-info.php:134
|
1871 |
msgid "Checkbox"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: admin/basic-info.php:135
|
1875 |
msgid "Select"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: admin/basic-info.php:136
|
1879 |
msgid "Radio Buttons"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: admin/basic-info.php:137
|
1883 |
msgid "Textarea"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: admin/basic-info.php:138
|
1887 |
msgid "Validation"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: admin/basic-info.php:139
|
1891 |
msgid "Map"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: admin/basic-info.php:140
|
1895 |
msgid "HTML"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: admin/basic-info.php:149
|
1899 |
msgid "Powerful Modules (**)"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: admin/basic-info.php:150
|
1903 |
msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: admin/basic-info.php:152
|
1907 |
msgid "Enable your modules"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: admin/basic-info.php:155
|
1911 |
msgid "Find out more about PRO Modules"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: admin/basic-info.php:160, modules/modules.php:87, modules/user-listing/userlisting.php:11, modules/user-listing/userlisting.php:12, modules/user-listing/userlisting.php:17, modules/user-listing/userlisting.php:23
|
1915 |
msgid "User Listing"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: admin/basic-info.php:164
|
1919 |
msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: admin/basic-info.php:162
|
1923 |
msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: admin/basic-info.php:168, admin/general-settings.php:18, modules/modules.php:94
|
1927 |
msgid "Email Customizer"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: admin/basic-info.php:169
|
1931 |
msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: admin/basic-info.php:172, modules/modules.php:106, modules/custom-redirects/custom_redirects_admin.php:33, modules/custom-redirects/custom_redirects_admin.php:34
|
1935 |
msgid "Custom Redirects"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: admin/basic-info.php:173
|
1939 |
msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: admin/basic-info.php:178, modules/modules.php:73
|
1943 |
msgid "Multiple Registration Forms"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: admin/basic-info.php:179
|
1947 |
msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
+
#: admin/basic-info.php:182, modules/modules.php:80
|
1951 |
msgid "Multiple Edit-profile Forms"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: admin/basic-info.php:183
|
1955 |
msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: admin/basic-info.php:186, modules/modules.php:113
|
1959 |
msgid "Repeater Fields"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
+
#: admin/basic-info.php:187
|
1963 |
msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: admin/basic-info.php:223
|
1967 |
msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
+
#: admin/basic-info.php:224
|
1971 |
msgid "** only available in the %1$sPro version%2$s."
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: admin/feedback.php:25
|
1975 |
msgid "Quick Feedback"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
+
#: admin/feedback.php:26
|
1979 |
msgid "Because we care about our clients, please leave us feedback on why you are no longer using our plugin."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: admin/feedback.php:32
|
1983 |
msgid "Lacking certain features"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: admin/feedback.php:33
|
1987 |
msgid "What feature would you like to see?"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
+
#: admin/feedback.php:37
|
1991 |
msgid "Hard to use"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: admin/feedback.php:38
|
1995 |
msgid "How can we improve our user experience ?"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: admin/feedback.php:42
|
1999 |
msgid "Unsatisfactory support"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: admin/feedback.php:47
|
2003 |
msgid "Other"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
+
#: admin/feedback.php:48
|
2007 |
msgid "Please tell us more"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: admin/feedback.php:52
|
2011 |
msgid "Poor Documentation"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: admin/feedback.php:53
|
2015 |
msgid "Tell us what you couldn't find"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
+
#: admin/feedback.php:58
|
2019 |
msgid "Submit & Deactivate"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#: admin/feedback.php:61
|
2023 |
msgid "Skip and Deactivate"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: admin/feedback.php:165
|
2027 |
msgid "Submit and Deactivate"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: admin/general-settings.php:10
|
2031 |
msgid "Admin Bar"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
+
#: admin/general-settings.php:12, admin/private-website.php:11, admin/private-website.php:11
|
2035 |
msgid "Private Website"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: admin/general-settings.php:20
|
2039 |
msgid "User Emails"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: admin/general-settings.php:21
|
2043 |
msgid "Administrator Emails"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: admin/general-settings.php:98
|
2047 |
msgid "Profile Builder Settings"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: admin/general-settings.php:111
|
2051 |
msgid "Load Profile Builder's own CSS file in the front-end:"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: admin/general-settings.php:116
|
2055 |
msgid "You can find the default file here: %1$s"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: admin/general-settings.php:123
|
2059 |
msgid "Automatically Log In:"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: admin/general-settings.php:131
|
2063 |
msgid "Select \"Yes\" to automatically log in new users after successful registration."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: admin/general-settings.php:138
|
2067 |
msgid "\"Email Confirmation\" Activated:"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: admin/general-settings.php:146
|
2071 |
msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: admin/general-settings.php:148
|
2075 |
msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: admin/general-settings.php:156
|
2079 |
msgid "\"Email Confirmation\" Landing Page:"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: admin/general-settings.php:161
|
2083 |
msgid "Existing Pages"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: admin/general-settings.php:176
|
2087 |
msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: admin/general-settings.php:187
|
2091 |
msgid "\"Admin Approval\" Activated:"
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: admin/general-settings.php:195
|
2095 |
msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: admin/general-settings.php:202
|
2099 |
msgid "\"Admin Approval\" on User Role:"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: admin/general-settings.php:221
|
2103 |
msgid "Select on what user roles to activate Admin Approval."
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: admin/general-settings.php:233
|
2107 |
msgid "\"Roles Editor\" Activated:"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: admin/general-settings.php:241
|
2111 |
msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: admin/general-settings.php:252
|
2115 |
msgid "\"Admin Approval\" Feature:"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: admin/general-settings.php:255
|
2119 |
msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: admin/general-settings.php:262
|
2123 |
msgid "Allow Users to Log in With:"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: admin/general-settings.php:266
|
2127 |
msgid "Username and Email"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: admin/general-settings.php:267, admin/manage-fields.php:319, front-end/login.php:248, front-end/login.php:262, front-end/login.php:397, ../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
|
2131 |
msgid "Username"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: admin/general-settings.php:268, front-end/login.php:394, modules/email-customizer/email-customizer.php:29, modules/user-listing/userlisting.php:813, modules/user-listing/userlisting.php:2368
|
2135 |
msgid "Email"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: admin/general-settings.php:271
|
2139 |
msgid "\"Username and Email\" - users can Log In with both Username and Email."
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: admin/general-settings.php:272
|
2143 |
msgid "\"Username\" - users can Log In only with Username."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: admin/general-settings.php:273
|
2147 |
msgid "\"Email\" - users can Log In only with Email."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: admin/general-settings.php:280
|
2151 |
msgid "Minimum Password Length:"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: admin/general-settings.php:285
|
2155 |
msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: admin/general-settings.php:292
|
2159 |
msgid "Minimum Password Strength:"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: admin/general-settings.php:296
|
2163 |
msgid "Disabled"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: admin/general-settings.php:307
|
2167 |
msgid "Use ajax on conditional fields:"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: admin/general-settings.php:315
|
2171 |
msgid "For large conditional forms select \"Yes\" for an improved page performance"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: admin/manage-fields.php:18
|
2175 |
msgid "Form Fields"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: admin/manage-fields.php:19
|
2179 |
msgid "Manage Form Fields"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: admin/manage-fields.php:126
|
2183 |
msgid "Choose one of the supported field types"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: admin/manage-fields.php:128
|
2187 |
msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: admin/manage-fields.php:164
|
2191 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this will only affect subsequent entries"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: admin/manage-fields.php:161
|
2195 |
msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: admin/manage-fields.php:178
|
2199 |
msgid "Field Title"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: admin/manage-fields.php:178
|
2203 |
msgid "Title of the field"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: admin/manage-fields.php:179, modules/multiple-forms/edit-profile-forms.php:245, modules/multiple-forms/register-forms.php:266
|
2207 |
msgid "Field"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: admin/manage-fields.php:180
|
2211 |
msgid "Meta-name"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: admin/manage-fields.php:181, modules/custom-redirects/custom_redirects_admin.php:69, modules/custom-redirects/custom_redirects_admin.php:99, modules/custom-redirects/custom_redirects_admin.php:118, modules/custom-redirects/custom_redirects_admin.php:143, modules/multiple-forms/edit-profile-forms.php:246, modules/multiple-forms/register-forms.php:267
|
2215 |
msgid "ID"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: admin/manage-fields.php:181, modules/multiple-forms/edit-profile-forms.php:246, modules/multiple-forms/register-forms.php:267
|
2219 |
msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: admin/manage-fields.php:182
|
2223 |
msgid "Description"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: admin/manage-fields.php:182
|
2227 |
msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: admin/manage-fields.php:183
|
2231 |
msgid "Row Count"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: admin/manage-fields.php:183
|
2235 |
msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: admin/manage-fields.php:184
|
2239 |
msgid "Allowed Image Extensions"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: admin/manage-fields.php:184
|
2243 |
msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: admin/manage-fields.php:185
|
2247 |
msgid "Allowed Upload Extensions"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: admin/manage-fields.php:185
|
2251 |
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 (.*)"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: admin/manage-fields.php:186
|
2255 |
msgid "Avatar Size"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: admin/manage-fields.php:186
|
2259 |
msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: admin/manage-fields.php:187
|
2263 |
msgid "Date-format"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: admin/manage-fields.php:187
|
2267 |
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"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: admin/manage-fields.php:188
|
2271 |
msgid "Terms of Agreement"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: admin/manage-fields.php:188
|
2275 |
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>"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: admin/manage-fields.php:189
|
2279 |
msgid "Options"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: admin/manage-fields.php:189
|
2283 |
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"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: admin/manage-fields.php:190
|
2287 |
msgid "Enter a comma separated list of labels<br/>Visible for the user"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: admin/manage-fields.php:191
|
2291 |
msgid "reCAPTCHA Type"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: admin/manage-fields.php:191
|
2295 |
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."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: admin/manage-fields.php:192
|
2299 |
msgid "Site Key"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: admin/manage-fields.php:192
|
2303 |
msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: admin/manage-fields.php:193
|
2307 |
msgid "Secret Key"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: admin/manage-fields.php:193
|
2311 |
msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: admin/manage-fields.php:194
|
2315 |
msgid "Display on PB forms"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: admin/manage-fields.php:194
|
2319 |
msgid "PB Login"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: admin/manage-fields.php:194
|
2323 |
msgid "PB Register"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: admin/manage-fields.php:194
|
2327 |
msgid "PB Recover Password"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: admin/manage-fields.php:194
|
2331 |
msgid "Select on which Profile Builder forms to display reCAPTCHA"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: admin/manage-fields.php:195
|
2335 |
msgid "Display on default WP forms"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: admin/manage-fields.php:195
|
2339 |
msgid "Default WP Login"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: admin/manage-fields.php:195
|
2343 |
msgid "Default WP Register"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: admin/manage-fields.php:195
|
2347 |
msgid "Default WP Recover Password"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: admin/manage-fields.php:195
|
2351 |
msgid "Select on which default WP forms to display reCAPTCHA"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: admin/manage-fields.php:196
|
2355 |
msgid "User Roles"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: admin/manage-fields.php:196
|
2359 |
msgid "Select which user roles to show to the user ( drag and drop to re-order )"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: admin/manage-fields.php:197
|
2363 |
msgid "Display on Edit Profile"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: admin/manage-fields.php:197
|
2367 |
msgid "Check if you want the select user role field to appear on Edit Profile forms"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: admin/manage-fields.php:198
|
2371 |
msgid "User Roles Order"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: admin/manage-fields.php:198
|
2375 |
msgid "Save the user role order from the user roles checkboxes"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: admin/manage-fields.php:199
|
2379 |
msgid "Default Value"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: admin/manage-fields.php:199
|
2383 |
msgid "Default value of the field"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: admin/manage-fields.php:200, admin/manage-fields.php:202, admin/manage-fields.php:203, admin/manage-fields.php:204
|
2387 |
msgid "Default Option"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: admin/manage-fields.php:200
|
2391 |
msgid "Specify the option which should be selected by default"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: admin/manage-fields.php:201
|
2395 |
msgid "Default Option(s)"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: admin/manage-fields.php:201
|
2399 |
msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: admin/manage-fields.php:202, admin/manage-fields.php:203, admin/manage-fields.php:204
|
2403 |
msgid "Default option of the field"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: admin/manage-fields.php:205
|
2407 |
msgid "Show Currency Symbol"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: admin/manage-fields.php:205
|
2411 |
msgid "Whether the currency symbol should be displayed after the currency name in the select option."
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: admin/manage-fields.php:206
|
2415 |
msgid "Show Post Type"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: admin/manage-fields.php:206
|
2419 |
msgid "Posts from what post type will be displayed in the select."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: admin/manage-fields.php:207
|
2423 |
msgid "Allowable Values"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: admin/manage-fields.php:207
|
2427 |
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."
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: admin/manage-fields.php:208
|
2431 |
msgid "Error Message"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: admin/manage-fields.php:208
|
2435 |
msgid "Set a custom error message that will be displayed to the user."
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: admin/manage-fields.php:209
|
2439 |
msgid "Time Format"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: admin/manage-fields.php:209
|
2443 |
msgid "Specify the time format."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: admin/manage-fields.php:210
|
2447 |
msgid "Google Maps API Key"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: admin/manage-fields.php:210
|
2451 |
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."
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: admin/manage-fields.php:215
|
2455 |
msgid "Default Latitude"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: admin/manage-fields.php:216
|
2459 |
msgid "The latitude at which the map should be displayed when no pins are attached."
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: admin/manage-fields.php:222
|
2463 |
msgid "Default Longitude"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: admin/manage-fields.php:223
|
2467 |
msgid "The longitude at which the map should be displayed when no pins are attached."
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: admin/manage-fields.php:229
|
2471 |
msgid "Default Zoom Level"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: admin/manage-fields.php:230
|
2475 |
msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: admin/manage-fields.php:234
|
2479 |
msgid "Map Height"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: admin/manage-fields.php:234
|
2483 |
msgid "The height of the map."
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: admin/manage-fields.php:235
|
2487 |
msgid "Default Content"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: admin/manage-fields.php:235
|
2491 |
msgid "Default value of the textarea"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: admin/manage-fields.php:236
|
2495 |
msgid "HTML Content"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: admin/manage-fields.php:236
|
2499 |
msgid "Add your HTML (or text) content"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: admin/manage-fields.php:237
|
2503 |
msgid "Phone Format"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: admin/manage-fields.php:237
|
2507 |
msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: admin/manage-fields.php:237
|
2511 |
msgid "Eg. (###) ###-####"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: admin/manage-fields.php:237
|
2515 |
msgid "Empty field won't check for correct phone number."
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: admin/manage-fields.php:238
|
2519 |
msgid "Heading Tag"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: admin/manage-fields.php:238
|
2523 |
msgid "Change heading field size on front-end forms"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: admin/manage-fields.php:239
|
2527 |
msgid "Min Number Value"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: admin/manage-fields.php:239
|
2531 |
msgid "Min allowed number value (0 to allow only positive numbers)"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: admin/manage-fields.php:239
|
2535 |
msgid "Leave it empty for no min value"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: admin/manage-fields.php:240
|
2539 |
msgid "Max Number Value"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: admin/manage-fields.php:240
|
2543 |
msgid "Max allowed number value (0 to allow only negative numbers)"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: admin/manage-fields.php:240
|
2547 |
msgid "Leave it empty for no max value"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: admin/manage-fields.php:241
|
2551 |
msgid "Number Step Value"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: admin/manage-fields.php:241
|
2555 |
msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: admin/manage-fields.php:241
|
2559 |
msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: admin/manage-fields.php:241
|
2563 |
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)"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: admin/manage-fields.php:241
|
2567 |
msgid "Leave it empty for no restriction"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: admin/manage-fields.php:242
|
2571 |
msgid "Whether the field is required or not"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: admin/manage-fields.php:243
|
2575 |
msgid "Overwrite Existing"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: admin/manage-fields.php:243
|
2579 |
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"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: admin/manage-fields.php:249
|
2583 |
msgid "POIs Load Type"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: admin/manage-fields.php:251
|
2587 |
msgid "POIs of the listed users (as filtered & paginated)"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: admin/manage-fields.php:252
|
2591 |
msgid "POIs of all the users for the filter* (no pagination)"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: admin/manage-fields.php:255
|
2595 |
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."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: admin/manage-fields.php:262
|
2599 |
msgid "POI Bubble Info"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: admin/manage-fields.php:265
|
2603 |
msgid "Select the attributes to be listed inside the POI bubble."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: admin/manage-fields.php:276
|
2607 |
msgid "Number of Users per Map Iteration"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: admin/manage-fields.php:277
|
2611 |
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."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: admin/manage-fields.php:285
|
2615 |
msgid "Form Field Properties"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: admin/manage-fields.php:299
|
2619 |
msgid "Registration & Edit Profile Forms"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: admin/manage-fields.php:319
|
2623 |
msgid "Usernames cannot be changed."
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: admin/manage-fields.php:322, modules/user-listing/userlisting.php:846, modules/user-listing/userlisting.php:2375
|
2627 |
msgid "Nickname"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: admin/manage-fields.php:323
|
2631 |
msgid "Display name publicly as"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: admin/manage-fields.php:326, 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
|
2635 |
msgid "Website"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: admin/manage-fields.php:330
|
2639 |
msgid "AIM"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: admin/manage-fields.php:331
|
2643 |
msgid "Yahoo IM"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: admin/manage-fields.php:332
|
2647 |
msgid "Jabber / Google Talk"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: admin/manage-fields.php:336, modules/user-listing/userlisting.php:124, modules/user-listing/userlisting.php:831, modules/user-listing/userlisting.php:2370
|
2651 |
msgid "Biographical Info"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: admin/manage-fields.php:336
|
2655 |
msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: admin/manage-fields.php:337, front-end/recover.php:72, modules/email-customizer/email-customizer.php:30
|
2659 |
msgid "Password"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: admin/manage-fields.php:337
|
2663 |
msgid "Type your password."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: admin/manage-fields.php:338, front-end/recover.php:73
|
2667 |
msgid "Repeat Password"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: admin/manage-fields.php:338
|
2671 |
msgid "Type your password again. "
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: admin/manage-fields.php:340
|
2675 |
msgid "Blog Details"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: admin/manage-fields.php:399
|
2679 |
msgid "Select a Country"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: admin/manage-fields.php:400
|
2683 |
msgid "Afghanistan"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: admin/manage-fields.php:401
|
2687 |
msgid "Aland Islands"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: admin/manage-fields.php:402
|
2691 |
msgid "Albania"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: admin/manage-fields.php:403
|
2695 |
msgid "Algeria"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: admin/manage-fields.php:404
|
2699 |
msgid "American Samoa"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: admin/manage-fields.php:405
|
2703 |
msgid "Andorra"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: admin/manage-fields.php:406
|
2707 |
msgid "Angola"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: admin/manage-fields.php:407
|
2711 |
msgid "Anguilla"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: admin/manage-fields.php:408
|
2715 |
msgid "Antarctica"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: admin/manage-fields.php:409
|
2719 |
msgid "Antigua and Barbuda"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: admin/manage-fields.php:410
|
2723 |
msgid "Argentina"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: admin/manage-fields.php:411
|
2727 |
msgid "Armenia"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: admin/manage-fields.php:412
|
2731 |
msgid "Aruba"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: admin/manage-fields.php:413
|
2735 |
msgid "Australia"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: admin/manage-fields.php:414
|
2739 |
msgid "Austria"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: admin/manage-fields.php:415
|
2743 |
msgid "Azerbaijan"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: admin/manage-fields.php:416
|
2747 |
msgid "Bahamas"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: admin/manage-fields.php:417
|
2751 |
msgid "Bahrain"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: admin/manage-fields.php:418
|
2755 |
msgid "Bangladesh"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: admin/manage-fields.php:419
|
2759 |
msgid "Barbados"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: admin/manage-fields.php:420
|
2763 |
msgid "Belarus"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: admin/manage-fields.php:421
|
2767 |
msgid "Belgium"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: admin/manage-fields.php:422
|
2771 |
msgid "Belize"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: admin/manage-fields.php:423
|
2775 |
msgid "Benin"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: admin/manage-fields.php:424
|
2779 |
msgid "Bermuda"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: admin/manage-fields.php:425
|
2783 |
msgid "Bhutan"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: admin/manage-fields.php:426
|
2787 |
msgid "Bolivia"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: admin/manage-fields.php:427
|
2791 |
msgid "Bonaire, Saint Eustatius and Saba"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: admin/manage-fields.php:428
|
2795 |
msgid "Bosnia and Herzegovina"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: admin/manage-fields.php:429
|
2799 |
msgid "Botswana"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: admin/manage-fields.php:430
|
2803 |
msgid "Bouvet Island"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: admin/manage-fields.php:431
|
2807 |
msgid "Brazil"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: admin/manage-fields.php:432
|
2811 |
msgid "British Indian Ocean Territory"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: admin/manage-fields.php:433
|
2815 |
msgid "British Virgin Islands"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: admin/manage-fields.php:434
|
2819 |
msgid "Brunei"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: admin/manage-fields.php:435
|
2823 |
msgid "Bulgaria"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: admin/manage-fields.php:436
|
2827 |
msgid "Burkina Faso"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: admin/manage-fields.php:437
|
2831 |
msgid "Burundi"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: admin/manage-fields.php:438
|
2835 |
msgid "Cambodia"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: admin/manage-fields.php:439
|
2839 |
msgid "Cameroon"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: admin/manage-fields.php:440
|
2843 |
msgid "Canada"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: admin/manage-fields.php:441
|
2847 |
msgid "Cape Verde"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: admin/manage-fields.php:442
|
2851 |
msgid "Cayman Islands"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: admin/manage-fields.php:443
|
2855 |
msgid "Central African Republic"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: admin/manage-fields.php:444
|
2859 |
msgid "Chad"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: admin/manage-fields.php:445
|
2863 |
msgid "Chile"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: admin/manage-fields.php:446
|
2867 |
msgid "China"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: admin/manage-fields.php:447
|
2871 |
msgid "Christmas Island"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: admin/manage-fields.php:448
|
2875 |
msgid "Cocos Islands"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: admin/manage-fields.php:449
|
2879 |
msgid "Colombia"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: admin/manage-fields.php:450
|
2883 |
msgid "Comoros"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: admin/manage-fields.php:451
|
2887 |
msgid "Cook Islands"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: admin/manage-fields.php:452
|
2891 |
msgid "Costa Rica"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: admin/manage-fields.php:453
|
2895 |
msgid "Croatia"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: admin/manage-fields.php:454
|
2899 |
msgid "Cuba"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: admin/manage-fields.php:455
|
2903 |
msgid "Curacao"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: admin/manage-fields.php:456
|
2907 |
msgid "Cyprus"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: admin/manage-fields.php:457
|
2911 |
msgid "Czech Republic"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: admin/manage-fields.php:458
|
2915 |
msgid "Democratic Republic of the Congo"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: admin/manage-fields.php:459
|
2919 |
msgid "Denmark"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: admin/manage-fields.php:460
|
2923 |
msgid "Djibouti"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: admin/manage-fields.php:461
|
2927 |
msgid "Dominica"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: admin/manage-fields.php:462
|
2931 |
msgid "Dominican Republic"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: admin/manage-fields.php:463
|
2935 |
msgid "East Timor"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: admin/manage-fields.php:464
|
2939 |
msgid "Ecuador"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: admin/manage-fields.php:465
|
2943 |
msgid "Egypt"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: admin/manage-fields.php:466
|
2947 |
msgid "El Salvador"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: admin/manage-fields.php:467
|
2951 |
msgid "Equatorial Guinea"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: admin/manage-fields.php:468
|
2955 |
msgid "Eritrea"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: admin/manage-fields.php:469
|
2959 |
msgid "Estonia"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: admin/manage-fields.php:470
|
2963 |
msgid "Ethiopia"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: admin/manage-fields.php:471
|
2967 |
msgid "Falkland Islands"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: admin/manage-fields.php:472
|
2971 |
msgid "Faroe Islands"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: admin/manage-fields.php:473
|
2975 |
msgid "Fiji"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: admin/manage-fields.php:474
|
2979 |
msgid "Finland"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: admin/manage-fields.php:475
|
2983 |
msgid "France"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: admin/manage-fields.php:476
|
2987 |
msgid "French Guiana"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: admin/manage-fields.php:477
|
2991 |
msgid "French Polynesia"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: admin/manage-fields.php:478
|
2995 |
msgid "French Southern Territories"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: admin/manage-fields.php:479
|
2999 |
msgid "Gabon"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: admin/manage-fields.php:480
|
3003 |
msgid "Gambia"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: admin/manage-fields.php:481
|
3007 |
msgid "Georgia"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: admin/manage-fields.php:482
|
3011 |
msgid "Germany"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: admin/manage-fields.php:483
|
3015 |
msgid "Ghana"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: admin/manage-fields.php:484
|
3019 |
msgid "Gibraltar"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: admin/manage-fields.php:485
|
3023 |
msgid "Greece"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: admin/manage-fields.php:486
|
3027 |
msgid "Greenland"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: admin/manage-fields.php:487
|
3031 |
msgid "Grenada"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: admin/manage-fields.php:488
|
3035 |
msgid "Guadeloupe"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: admin/manage-fields.php:489
|
3039 |
msgid "Guam"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: admin/manage-fields.php:490
|
3043 |
msgid "Guatemala"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: admin/manage-fields.php:491
|
3047 |
msgid "Guernsey"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: admin/manage-fields.php:492
|
3051 |
msgid "Guinea"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: admin/manage-fields.php:493
|
3055 |
msgid "Guinea-Bissau"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: admin/manage-fields.php:494
|
3059 |
msgid "Guyana"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: admin/manage-fields.php:495
|
3063 |
msgid "Haiti"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: admin/manage-fields.php:496
|
3067 |
msgid "Heard Island and McDonald Islands"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: admin/manage-fields.php:497
|
3071 |
msgid "Honduras"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: admin/manage-fields.php:498
|
3075 |
msgid "Hong Kong"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: admin/manage-fields.php:499
|
3079 |
msgid "Hungary"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: admin/manage-fields.php:500
|
3083 |
msgid "Iceland"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: admin/manage-fields.php:501
|
3087 |
msgid "India"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: admin/manage-fields.php:502
|
3091 |
msgid "Indonesia"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: admin/manage-fields.php:503
|
3095 |
msgid "Iran"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: admin/manage-fields.php:504
|
3099 |
msgid "Iraq"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: admin/manage-fields.php:505
|
3103 |
msgid "Ireland"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: admin/manage-fields.php:506
|
3107 |
msgid "Isle of Man"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: admin/manage-fields.php:507
|
3111 |
msgid "Israel"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: admin/manage-fields.php:508
|
3115 |
msgid "Italy"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: admin/manage-fields.php:509
|
3119 |
msgid "Ivory Coast"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: admin/manage-fields.php:510
|
3123 |
msgid "Jamaica"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: admin/manage-fields.php:511
|
3127 |
msgid "Japan"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: admin/manage-fields.php:512
|
3131 |
msgid "Jersey"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: admin/manage-fields.php:513
|
3135 |
msgid "Jordan"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: admin/manage-fields.php:514
|
3139 |
msgid "Kazakhstan"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: admin/manage-fields.php:515
|
3143 |
msgid "Kenya"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: admin/manage-fields.php:516
|
3147 |
msgid "Kiribati"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: admin/manage-fields.php:517
|
3151 |
msgid "Kosovo"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: admin/manage-fields.php:518
|
3155 |
msgid "Kuwait"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: admin/manage-fields.php:519
|
3159 |
msgid "Kyrgyzstan"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: admin/manage-fields.php:520
|
3163 |
msgid "Laos"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: admin/manage-fields.php:521
|
3167 |
msgid "Latvia"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: admin/manage-fields.php:522
|
3171 |
msgid "Lebanon"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: admin/manage-fields.php:523
|
3175 |
msgid "Lesotho"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: admin/manage-fields.php:524
|
3179 |
msgid "Liberia"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: admin/manage-fields.php:525
|
3183 |
msgid "Libya"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: admin/manage-fields.php:526
|
3187 |
msgid "Liechtenstein"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: admin/manage-fields.php:527
|
3191 |
msgid "Lithuania"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: admin/manage-fields.php:528
|
3195 |
msgid "Luxembourg"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: admin/manage-fields.php:529
|
3199 |
msgid "Macao"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: admin/manage-fields.php:530
|
3203 |
msgid "Macedonia"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: admin/manage-fields.php:531
|
3207 |
msgid "Madagascar"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: admin/manage-fields.php:532
|
3211 |
msgid "Malawi"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: admin/manage-fields.php:533
|
3215 |
msgid "Malaysia"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: admin/manage-fields.php:534
|
3219 |
msgid "Maldives"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: admin/manage-fields.php:535
|
3223 |
msgid "Mali"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: admin/manage-fields.php:536
|
3227 |
msgid "Malta"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: admin/manage-fields.php:537
|
3231 |
msgid "Marshall Islands"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: admin/manage-fields.php:538
|
3235 |
msgid "Martinique"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: admin/manage-fields.php:539
|
3239 |
msgid "Mauritania"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: admin/manage-fields.php:540
|
3243 |
msgid "Mauritius"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: admin/manage-fields.php:541
|
3247 |
msgid "Mayotte"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: admin/manage-fields.php:542
|
3251 |
msgid "Mexico"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: admin/manage-fields.php:543
|
3255 |
msgid "Micronesia"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: admin/manage-fields.php:544
|
3259 |
msgid "Moldova"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: admin/manage-fields.php:545
|
3263 |
msgid "Monaco"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: admin/manage-fields.php:546
|
3267 |
msgid "Mongolia"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: admin/manage-fields.php:547
|
3271 |
msgid "Montenegro"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: admin/manage-fields.php:548
|
3275 |
msgid "Montserrat"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: admin/manage-fields.php:549
|
3279 |
msgid "Morocco"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: admin/manage-fields.php:550
|
3283 |
msgid "Mozambique"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: admin/manage-fields.php:551
|
3287 |
msgid "Myanmar"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: admin/manage-fields.php:552
|
3291 |
msgid "Namibia"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
+
#: admin/manage-fields.php:553
|
3295 |
msgid "Nauru"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: admin/manage-fields.php:554
|
3299 |
msgid "Nepal"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: admin/manage-fields.php:555
|
3303 |
msgid "Netherlands"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: admin/manage-fields.php:556
|
3307 |
msgid "New Caledonia"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: admin/manage-fields.php:557
|
3311 |
msgid "New Zealand"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: admin/manage-fields.php:558
|
3315 |
msgid "Nicaragua"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: admin/manage-fields.php:559
|
3319 |
msgid "Niger"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: admin/manage-fields.php:560
|
3323 |
msgid "Nigeria"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: admin/manage-fields.php:561
|
3327 |
msgid "Niue"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: admin/manage-fields.php:562
|
3331 |
msgid "Norfolk Island"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: admin/manage-fields.php:563
|
3335 |
msgid "North Korea"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: admin/manage-fields.php:564
|
3339 |
msgid "Northern Mariana Islands"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: admin/manage-fields.php:565
|
3343 |
msgid "Norway"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: admin/manage-fields.php:566
|
3347 |
msgid "Oman"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: admin/manage-fields.php:567
|
3351 |
msgid "Pakistan"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: admin/manage-fields.php:568
|
3355 |
msgid "Palau"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: admin/manage-fields.php:569
|
3359 |
msgid "Palestinian Territory"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: admin/manage-fields.php:570
|
3363 |
msgid "Panama"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: admin/manage-fields.php:571
|
3367 |
msgid "Papua New Guinea"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: admin/manage-fields.php:572
|
3371 |
msgid "Paraguay"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: admin/manage-fields.php:573
|
3375 |
msgid "Peru"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: admin/manage-fields.php:574
|
3379 |
msgid "Philippines"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: admin/manage-fields.php:575
|
3383 |
msgid "Pitcairn"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: admin/manage-fields.php:576
|
3387 |
msgid "Poland"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: admin/manage-fields.php:577
|
3391 |
msgid "Portugal"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: admin/manage-fields.php:578
|
3395 |
msgid "Puerto Rico"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: admin/manage-fields.php:579
|
3399 |
msgid "Qatar"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: admin/manage-fields.php:580
|
3403 |
msgid "Republic of the Congo"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: admin/manage-fields.php:581
|
3407 |
msgid "Reunion"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: admin/manage-fields.php:582
|
3411 |
msgid "Romania"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: admin/manage-fields.php:583
|
3415 |
msgid "Russia"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: admin/manage-fields.php:584
|
3419 |
msgid "Rwanda"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
+
#: admin/manage-fields.php:585
|
3423 |
msgid "Saint Barthelemy"
|
3424 |
msgstr ""
|
3425 |
|
3426 |
+
#: admin/manage-fields.php:586
|
3427 |
msgid "Saint Helena"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
+
#: admin/manage-fields.php:587
|
3431 |
msgid "Saint Kitts and Nevis"
|
3432 |
msgstr ""
|
3433 |
|
3434 |
+
#: admin/manage-fields.php:588
|
3435 |
msgid "Saint Lucia"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: admin/manage-fields.php:589
|
3439 |
msgid "Saint Martin"
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: admin/manage-fields.php:590
|
3443 |
msgid "Saint Pierre and Miquelon"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: admin/manage-fields.php:591
|
3447 |
msgid "Saint Vincent and the Grenadines"
|
3448 |
msgstr ""
|
3449 |
|
3450 |
+
#: admin/manage-fields.php:592
|
3451 |
msgid "Samoa"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: admin/manage-fields.php:593
|
3455 |
msgid "San Marino"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: admin/manage-fields.php:594
|
3459 |
msgid "Sao Tome and Principe"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: admin/manage-fields.php:595
|
3463 |
msgid "Saudi Arabia"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: admin/manage-fields.php:596
|
3467 |
msgid "Senegal"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
+
#: admin/manage-fields.php:597
|
3471 |
msgid "Serbia"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
+
#: admin/manage-fields.php:598
|
3475 |
msgid "Seychelles"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: admin/manage-fields.php:599
|
3479 |
msgid "Sierra Leone"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: admin/manage-fields.php:600
|
3483 |
msgid "Singapore"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: admin/manage-fields.php:601
|
3487 |
msgid "Sint Maarten"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: admin/manage-fields.php:602
|
3491 |
msgid "Slovakia"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
+
#: admin/manage-fields.php:603
|
3495 |
msgid "Slovenia"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: admin/manage-fields.php:604
|
3499 |
msgid "Solomon Islands"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: admin/manage-fields.php:605
|
3503 |
msgid "Somalia"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: admin/manage-fields.php:606
|
3507 |
msgid "South Africa"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: admin/manage-fields.php:607
|
3511 |
msgid "South Georgia and the South Sandwich Islands"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: admin/manage-fields.php:608
|
3515 |
msgid "South Korea"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: admin/manage-fields.php:609
|
3519 |
msgid "South Sudan"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: admin/manage-fields.php:610
|
3523 |
msgid "Spain"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: admin/manage-fields.php:611
|
3527 |
msgid "Sri Lanka"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
+
#: admin/manage-fields.php:612
|
3531 |
msgid "Sudan"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
+
#: admin/manage-fields.php:613
|
3535 |
msgid "Suriname"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: admin/manage-fields.php:614
|
3539 |
msgid "Svalbard and Jan Mayen"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: admin/manage-fields.php:615
|
3543 |
msgid "Swaziland"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
+
#: admin/manage-fields.php:616
|
3547 |
msgid "Sweden"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
+
#: admin/manage-fields.php:617
|
3551 |
msgid "Switzerland"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
+
#: admin/manage-fields.php:618
|
3555 |
msgid "Syria"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: admin/manage-fields.php:619
|
3559 |
msgid "Taiwan"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: admin/manage-fields.php:620
|
3563 |
msgid "Tajikistan"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: admin/manage-fields.php:621
|
3567 |
msgid "Tanzania"
|
3568 |
msgstr ""
|
3569 |
|
3570 |
+
#: admin/manage-fields.php:622
|
3571 |
msgid "Thailand"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
+
#: admin/manage-fields.php:623
|
3575 |
msgid "Togo"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: admin/manage-fields.php:624
|
3579 |
msgid "Tokelau"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: admin/manage-fields.php:625
|
3583 |
msgid "Tonga"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: admin/manage-fields.php:626
|
3587 |
msgid "Trinidad and Tobago"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: admin/manage-fields.php:627
|
3591 |
msgid "Tunisia"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: admin/manage-fields.php:628
|
3595 |
msgid "Turkey"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: admin/manage-fields.php:629
|
3599 |
msgid "Turkmenistan"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
+
#: admin/manage-fields.php:630
|
3603 |
msgid "Turks and Caicos Islands"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
+
#: admin/manage-fields.php:631
|
3607 |
msgid "Tuvalu"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
+
#: admin/manage-fields.php:632
|
3611 |
msgid "U.S. Virgin Islands"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: admin/manage-fields.php:633
|
3615 |
msgid "Uganda"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: admin/manage-fields.php:634
|
3619 |
msgid "Ukraine"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: admin/manage-fields.php:635
|
3623 |
msgid "United Arab Emirates"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: admin/manage-fields.php:636
|
3627 |
msgid "United Kingdom"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: admin/manage-fields.php:637
|
3631 |
msgid "United States"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: admin/manage-fields.php:638
|
3635 |
msgid "United States Minor Outlying Islands"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: admin/manage-fields.php:639
|
3639 |
msgid "Uruguay"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: admin/manage-fields.php:640
|
3643 |
msgid "Uzbekistan"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: admin/manage-fields.php:641
|
3647 |
msgid "Vanuatu"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: admin/manage-fields.php:642
|
3651 |
msgid "Vatican"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
+
#: admin/manage-fields.php:643
|
3655 |
msgid "Venezuela"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
+
#: admin/manage-fields.php:644
|
3659 |
msgid "Vietnam"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: admin/manage-fields.php:645
|
3663 |
msgid "Wallis and Futuna"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: admin/manage-fields.php:646
|
3667 |
msgid "Western Sahara"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: admin/manage-fields.php:647
|
3671 |
msgid "Yemen"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
+
#: admin/manage-fields.php:648
|
3675 |
msgid "Zambia"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
+
#: admin/manage-fields.php:649
|
3679 |
msgid "Zimbabwe"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: admin/manage-fields.php:682
|
3683 |
msgid "Albania Lek"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: admin/manage-fields.php:683
|
3687 |
msgid "Afghanistan Afghani"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: admin/manage-fields.php:684
|
3691 |
msgid "Argentina Peso"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
+
#: admin/manage-fields.php:686
|
3695 |
msgid "Australia Dollar"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: admin/manage-fields.php:687
|
3699 |
msgid "Azerbaijan New Manat"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: admin/manage-fields.php:688
|
3703 |
msgid "Bahamas Dollar"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: admin/manage-fields.php:689
|
3707 |
msgid "Barbados Dollar"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: admin/manage-fields.php:690
|
3711 |
msgid "Bangladeshi taka"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: admin/manage-fields.php:691
|
3715 |
msgid "Belarus Ruble"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: admin/manage-fields.php:692
|
3719 |
msgid "Belize Dollar"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: admin/manage-fields.php:693
|
3723 |
msgid "Bermuda Dollar"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: admin/manage-fields.php:694
|
3727 |
msgid "Bolivia Boliviano"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: admin/manage-fields.php:695
|
3731 |
msgid "Bosnia and Herzegovina Convertible Marka"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: admin/manage-fields.php:696
|
3735 |
msgid "Botswana Pula"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: admin/manage-fields.php:697
|
3739 |
msgid "Bulgaria Lev"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: admin/manage-fields.php:698
|
3743 |
msgid "Brazil Real"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: admin/manage-fields.php:699
|
3747 |
msgid "Brunei Darussalam Dollar"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: admin/manage-fields.php:700
|
3751 |
msgid "Cambodia Riel"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: admin/manage-fields.php:701
|
3755 |
msgid "Canada Dollar"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: admin/manage-fields.php:702
|
3759 |
msgid "Cayman Islands Dollar"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: admin/manage-fields.php:703
|
3763 |
msgid "Chile Peso"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: admin/manage-fields.php:704
|
3767 |
msgid "China Yuan Renminbi"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: admin/manage-fields.php:705
|
3771 |
msgid "Colombia Peso"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: admin/manage-fields.php:706
|
3775 |
msgid "Costa Rica Colon"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: admin/manage-fields.php:707
|
3779 |
msgid "Croatia Kuna"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: admin/manage-fields.php:708
|
3783 |
msgid "Cuba Peso"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: admin/manage-fields.php:709
|
3787 |
msgid "Czech Republic Koruna"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: admin/manage-fields.php:710
|
3791 |
msgid "Denmark Krone"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: admin/manage-fields.php:711
|
3795 |
msgid "Dominican Republic Peso"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: admin/manage-fields.php:712
|
3799 |
msgid "East Caribbean Dollar"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: admin/manage-fields.php:713
|
3803 |
msgid "Egypt Pound"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: admin/manage-fields.php:714
|
3807 |
msgid "El Salvador Colon"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: admin/manage-fields.php:715
|
3811 |
msgid "Estonia Kroon"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: admin/manage-fields.php:716
|
3815 |
msgid "Euro"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: admin/manage-fields.php:717
|
3819 |
msgid "Falkland Islands (Malvinas) Pound"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: admin/manage-fields.php:718
|
3823 |
msgid "Fiji Dollar"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
+
#: admin/manage-fields.php:719
|
3827 |
msgid "Ghana Cedis"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: admin/manage-fields.php:720
|
3831 |
msgid "Gibraltar Pound"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: admin/manage-fields.php:721
|
3835 |
msgid "Guatemala Quetzal"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: admin/manage-fields.php:722
|
3839 |
msgid "Guernsey Pound"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: admin/manage-fields.php:723
|
3843 |
msgid "Guyana Dollar"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: admin/manage-fields.php:724
|
3847 |
msgid "Honduras Lempira"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: admin/manage-fields.php:725
|
3851 |
msgid "Hong Kong Dollar"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: admin/manage-fields.php:726
|
3855 |
msgid "Hungary Forint"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: admin/manage-fields.php:727
|
3859 |
msgid "Iceland Krona"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: admin/manage-fields.php:728
|
3863 |
msgid "India Rupee"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: admin/manage-fields.php:729
|
3867 |
msgid "Indonesia Rupiah"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: admin/manage-fields.php:730
|
3871 |
msgid "Iran Rial"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: admin/manage-fields.php:731
|
3875 |
msgid "Isle of Man Pound"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: admin/manage-fields.php:732
|
3879 |
msgid "Israel Shekel"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: admin/manage-fields.php:733
|
3883 |
msgid "Jamaica Dollar"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: admin/manage-fields.php:734
|
3887 |
msgid "Japan Yen"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: admin/manage-fields.php:735
|
3891 |
msgid "Jersey Pound"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: admin/manage-fields.php:736
|
3895 |
msgid "Kazakhstan Tenge"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: admin/manage-fields.php:737
|
3899 |
msgid "Korea (North) Won"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: admin/manage-fields.php:738
|
3903 |
msgid "Korea (South) Won"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: admin/manage-fields.php:739
|
3907 |
msgid "Kyrgyzstan Som"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: admin/manage-fields.php:740
|
3911 |
msgid "Laos Kip"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: admin/manage-fields.php:741
|
3915 |
msgid "Latvia Lat"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: admin/manage-fields.php:742
|
3919 |
msgid "Lebanon Pound"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: admin/manage-fields.php:743
|
3923 |
msgid "Liberia Dollar"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: admin/manage-fields.php:744
|
3927 |
msgid "Lithuania Litas"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: admin/manage-fields.php:745
|
3931 |
msgid "Macedonia Denar"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: admin/manage-fields.php:746
|
3935 |
msgid "Malaysia Ringgit"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: admin/manage-fields.php:747
|
3939 |
msgid "Mauritius Rupee"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: admin/manage-fields.php:748
|
3943 |
msgid "Mexico Peso"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: admin/manage-fields.php:749
|
3947 |
msgid "Mongolia Tughrik"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: admin/manage-fields.php:750
|
3951 |
msgid "Mozambique Metical"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: admin/manage-fields.php:751
|
3955 |
msgid "Namibia Dollar"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: admin/manage-fields.php:752
|
3959 |
msgid "Nepal Rupee"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: admin/manage-fields.php:753
|
3963 |
msgid "Netherlands Antilles Guilder"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: admin/manage-fields.php:754
|
3967 |
msgid "New Zealand Dollar"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: admin/manage-fields.php:755
|
3971 |
msgid "Nicaragua Cordoba"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: admin/manage-fields.php:756
|
3975 |
msgid "Nigeria Naira"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: admin/manage-fields.php:757
|
3979 |
msgid "Norway Krone"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: admin/manage-fields.php:758
|
3983 |
msgid "Oman Rial"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: admin/manage-fields.php:759
|
3987 |
msgid "Pakistan Rupee"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: admin/manage-fields.php:760
|
3991 |
msgid "Panama Balboa"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: admin/manage-fields.php:761
|
3995 |
msgid "Paraguay Guarani"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: admin/manage-fields.php:762
|
3999 |
msgid "Peru Nuevo Sol"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: admin/manage-fields.php:763
|
4003 |
msgid "Philippines Peso"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: admin/manage-fields.php:764
|
4007 |
msgid "Poland Zloty"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: admin/manage-fields.php:765
|
4011 |
msgid "Qatar Riyal"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: admin/manage-fields.php:766
|
4015 |
msgid "Romania New Leu"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: admin/manage-fields.php:767
|
4019 |
msgid "Russia Ruble"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: admin/manage-fields.php:768
|
4023 |
msgid "Saint Helena Pound"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: admin/manage-fields.php:769
|
4027 |
msgid "Saudi Arabia Riyal"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: admin/manage-fields.php:770
|
4031 |
msgid "Serbia Dinar"
|
4032 |
msgstr ""
|
4033 |
|
4034 |
+
#: admin/manage-fields.php:771
|
4035 |
msgid "Seychelles Rupee"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: admin/manage-fields.php:772
|
4039 |
msgid "Singapore Dollar"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: admin/manage-fields.php:773
|
4043 |
msgid "Solomon Islands Dollar"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
+
#: admin/manage-fields.php:774
|
4047 |
msgid "Somalia Shilling"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
+
#: admin/manage-fields.php:775
|
4051 |
msgid "South Africa Rand"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
+
#: admin/manage-fields.php:776
|
4055 |
msgid "Sri Lanka Rupee"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: admin/manage-fields.php:777
|
4059 |
msgid "Sweden Krona"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: admin/manage-fields.php:778
|
4063 |
msgid "Switzerland Franc"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
+
#: admin/manage-fields.php:779
|
4067 |
msgid "Suriname Dollar"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: admin/manage-fields.php:780
|
4071 |
msgid "Syria Pound"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#: admin/manage-fields.php:781
|
4075 |
msgid "Taiwan New Dollar"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: admin/manage-fields.php:782
|
4079 |
msgid "Thailand Baht"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: admin/manage-fields.php:783
|
4083 |
msgid "Trinidad and Tobago Dollar"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: admin/manage-fields.php:784, admin/manage-fields.php:785
|
4087 |
msgid "Turkey Lira"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: admin/manage-fields.php:786
|
4091 |
msgid "Tuvalu Dollar"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: admin/manage-fields.php:787
|
4095 |
msgid "Ukraine Hryvna"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: admin/manage-fields.php:788
|
4099 |
msgid "United Kingdom Pound"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: admin/manage-fields.php:789
|
4103 |
msgid "Uganda Shilling"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: admin/manage-fields.php:790
|
4107 |
msgid "US Dollar"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: admin/manage-fields.php:791
|
4111 |
msgid "Uruguay Peso"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: admin/manage-fields.php:792
|
4115 |
msgid "Uzbekistan Som"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: admin/manage-fields.php:793
|
4119 |
msgid "Venezuela Bolivar"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: admin/manage-fields.php:794
|
4123 |
msgid "Viet Nam Dong"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: admin/manage-fields.php:795
|
4127 |
msgid "Yemen Rial"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: admin/manage-fields.php:796
|
4131 |
msgid "Zimbabwe Dollar"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: admin/manage-fields.php:1270
|
4135 |
msgid ""
|
4136 |
"That field is already added in this form\n"
|
4137 |
""
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: admin/manage-fields.php:1263, admin/manage-fields.php:1101
|
4141 |
msgid ""
|
4142 |
"You must select a field\n"
|
4143 |
""
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: admin/manage-fields.php:1111
|
4147 |
msgid ""
|
4148 |
"Please choose a different field type as this one already exists in your form (must be unique)\n"
|
4149 |
""
|
4150 |
msgstr ""
|
4151 |
|
4152 |
+
#: admin/manage-fields.php:1125
|
4153 |
msgid ""
|
4154 |
"The entered avatar size is not numerical\n"
|
4155 |
""
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: admin/manage-fields.php:1122
|
4159 |
msgid ""
|
4160 |
"The entered avatar size is not between 20 and 200\n"
|
4161 |
""
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: admin/manage-fields.php:1136
|
4165 |
msgid ""
|
4166 |
"You must enter a value for the row number\n"
|
4167 |
""
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: admin/manage-fields.php:1133
|
4171 |
msgid ""
|
4172 |
"The entered row number is not numerical\n"
|
4173 |
""
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: admin/manage-fields.php:1144
|
4177 |
msgid ""
|
4178 |
"You must enter the site key\n"
|
4179 |
""
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: admin/manage-fields.php:1146
|
4183 |
msgid ""
|
4184 |
"You must enter the secret key\n"
|
4185 |
""
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: admin/manage-fields.php:1168
|
4189 |
msgid ""
|
4190 |
"The entered value for the Datepicker is not a valid date-format\n"
|
4191 |
""
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: admin/manage-fields.php:1154
|
4195 |
msgid ""
|
4196 |
"You must enter a value for the date-format\n"
|
4197 |
""
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: admin/manage-fields.php:1187
|
4201 |
msgid ""
|
4202 |
"The meta-name cannot be empty\n"
|
4203 |
""
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: admin/manage-fields.php:1201, admin/manage-fields.php:1212
|
4207 |
msgid ""
|
4208 |
"That meta-name is already in use\n"
|
4209 |
""
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: admin/manage-fields.php:1193
|
4213 |
msgid ""
|
4214 |
"That meta-name can't be used, please choose another\n"
|
4215 |
""
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: admin/manage-fields.php:1223
|
4219 |
msgid ""
|
4220 |
"The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
|
4221 |
""
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: admin/manage-fields.php:1247
|
4225 |
msgid ""
|
4226 |
"The following option did not coincide with the ones in the options list: %s\n"
|
4227 |
""
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: admin/manage-fields.php:1243
|
4231 |
msgid ""
|
4232 |
"The following option(s) did not coincide with the ones in the options list: %s\n"
|
4233 |
""
|
4234 |
msgstr ""
|
4235 |
|
4236 |
+
#: admin/manage-fields.php:1254
|
4237 |
msgid ""
|
4238 |
"Please select at least one user role\n"
|
4239 |
""
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: admin/manage-fields.php:1321
|
4243 |
msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: admin/manage-fields.php:1336
|
4247 |
msgid "Use these shortcodes on the pages you want the forms to be displayed:"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
+
#: admin/manage-fields.php:1347
|
4251 |
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."
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: admin/manage-fields.php:1345
|
4255 |
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."
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: admin/manage-fields.php:1444
|
4259 |
msgid "Search Location"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: admin/pms-cross-promotion.php:11, admin/pms-cross-promotion.php:11
|
4263 |
msgid "Paid Accounts"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: admin/pms-cross-promotion.php:34
|
4267 |
msgid "Paid Member Subscriptions - a free WordPress plugin"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: admin/pms-cross-promotion.php:38
|
4271 |
msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#: admin/pms-cross-promotion.php:41
|
4275 |
msgid "Paid & Free Subscriptions"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: admin/pms-cross-promotion.php:42
|
4279 |
msgid "Restrict Content"
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
#: admin/pms-cross-promotion.php:43
|
4283 |
msgid "Member Management"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
+
#: admin/pms-cross-promotion.php:44
|
4287 |
msgid "Email Templates"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
+
#: admin/pms-cross-promotion.php:45
|
4291 |
msgid "Account Management"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: admin/pms-cross-promotion.php:46
|
4295 |
msgid "Subscription Management"
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: admin/pms-cross-promotion.php:47
|
4299 |
msgid "Payment Management"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: admin/pms-cross-promotion.php:84
|
4303 |
msgid "Plugin is Active"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: admin/pms-cross-promotion.php:85
|
4307 |
msgid "Plugin has been activated"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: admin/pms-cross-promotion.php:92
|
4311 |
msgid "Plugin has been deactivated."
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: admin/pms-cross-promotion.php:105
|
4315 |
msgid "Accept user payments, create subscription plans and restrict content on your website."
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: admin/pms-cross-promotion.php:156
|
4319 |
msgid "Step by Step Quick Setup"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: admin/pms-cross-promotion.php:240
|
4323 |
msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
|
4324 |
msgstr ""
|
4325 |
|
4387 |
msgid "Disable the WordPress REST-API for non-logged in users when Private Website is enabled"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
+
#: admin/private-website.php:159, features/functions.php:937, ../pb-add-on-customization-toolbox/includes/views/view-admin.php:47, ../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
|
4391 |
msgid "Save Changes"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: admin/register-version.php:23, admin/register-version.php:23
|
4395 |
msgid "Profile Builder Register"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
+
#: admin/register-version.php:15
|
4399 |
msgid "Register Your Version"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: admin/register-version.php:15
|
4403 |
msgid "Register Version"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: admin/register-version.php:62
|
4407 |
msgid "Register your version of %s"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: admin/register-version.php:70
|
4411 |
msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: admin/register-version.php:71
|
4415 |
msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: admin/register-version.php:73
|
4419 |
msgid " Serial Number:"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: admin/register-version.php:86
|
4423 |
msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
+
#: admin/register-version.php:84
|
4427 |
msgid "The serial number couldn't be validated because it expired!"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: admin/register-version.php:84
|
4431 |
msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: admin/register-version.php:82
|
4435 |
msgid "The serial number is about to expire soon!"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: admin/register-version.php:82
|
4439 |
msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: admin/register-version.php:80
|
4443 |
msgid "The serial number entered couldn't be validated!"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: admin/register-version.php:78
|
4447 |
msgid "The serial number was successfully validated!"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: admin/register-version.php:88
|
4451 |
msgid "(e.g. CLPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: admin/register-version.php:276
|
4455 |
msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %6$sDismiss%7$s</p>"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: admin/register-version.php:269
|
4459 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s %5$sDismiss%6$s</p>"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
+
#: admin/register-version.php:267
|
4463 |
msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now %4$s</p>"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
+
#: admin/register-version.php:261
|
4467 |
msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
+
#: features/functions.php:321
|
4471 |
msgid "GDPR Checkbox"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: features/functions.php:321
|
4475 |
msgid "I allow the website to collect and store the data I submit through this form."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: features/functions.php:728
|
4479 |
msgid "Strength indicator"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: features/functions.php:754, features/functions.php:778
|
4483 |
msgid "Very Weak"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
+
#: features/functions.php:768
|
4487 |
msgid "Minimum length of %d characters."
|
4488 |
msgstr ""
|
4489 |
|
4490 |
+
#: features/functions.php:779, front-end/recover.php:361, front-end/default-fields/password/password.php:56
|
4491 |
msgid "The password must have a minimum strength of %s"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: features/functions.php:856
|
4495 |
msgid "This field is required"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
+
#: features/functions.php:894, 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
|
4499 |
msgid "Please enter a (valid) reCAPTCHA value"
|
4500 |
msgstr ""
|
4501 |
|
4502 |
+
#: features/functions.php:901
|
4503 |
msgid "Incorrect phone number"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
+
#: features/functions.php:965, ../pb-add-on-labels-edit/assets/lib/wck-api/wordpress-creation-kit.php:444, assets/lib/wck-api/wordpress-creation-kit.php:447
|
4507 |
msgid "Content"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: features/functions.php:1147
|
4511 |
msgid "<br><br>Also, you will be able to visit your site at "
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: features/functions.php:1160
|
4515 |
msgid "<br><br>You can visit your site at "
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: features/functions.php:1246
|
4519 |
msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: features/functions.php:1397
|
4523 |
msgid "No feed available,please visit our <a href=\"%s\">homepage</a>!"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: features/functions.php:1438
|
4527 |
msgid "You are not currently logged in."
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: front-end/class-formbuilder.php:134
|
4531 |
msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: front-end/class-formbuilder.php:185
|
4535 |
msgid "You must be logged in to edit your profile."
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: front-end/class-formbuilder.php:179
|
4539 |
msgid "You are currently logged in as %1s. You don't need another account. %2s"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: front-end/class-formbuilder.php:179
|
4543 |
msgid "Log out of this account."
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: front-end/class-formbuilder.php:159
|
4547 |
msgid "Users cannot currently register themselves, but you can manually create users here."
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: front-end/class-formbuilder.php:159, front-end/class-formbuilder.php:156
|
4551 |
msgid "This message is only visible by administrators"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: front-end/class-formbuilder.php:156
|
4555 |
msgid "Users can register themselves or you can manually create users here."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: front-end/class-formbuilder.php:146
|
4559 |
msgid "Only an administrator can add new users."
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: front-end/class-formbuilder.php:278, front-end/login.php:486
|
4563 |
msgid "You are not allowed to do this."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: front-end/class-formbuilder.php:379
|
4567 |
msgid "There was an error in the submitted form"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: front-end/class-formbuilder.php:368
|
4571 |
msgid "Your profile has been successfully updated!"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
+
#: front-end/class-formbuilder.php:336, front-end/class-formbuilder.php:343
|
4575 |
msgid "The account %1s has been successfully created!"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
+
#: front-end/class-formbuilder.php:339, front-end/class-formbuilder.php:349
|
4579 |
msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: front-end/class-formbuilder.php:345
|
4583 |
msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: front-end/class-formbuilder.php:436
|
4587 |
msgid "Add User"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: front-end/class-formbuilder.php:518
|
4591 |
msgid "Send these credentials via email."
|
4592 |
msgstr ""
|
4593 |
|
4594 |
+
#: front-end/class-formbuilder.php:735
|
4595 |
msgid "There are no other users to edit"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: front-end/class-formbuilder.php:717
|
4599 |
msgid "User to edit:"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: front-end/class-formbuilder.php:719
|
4603 |
msgid "Select User"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: front-end/class-formbuilder.php:758
|
4607 |
msgid "Something went wrong. Please try again!"
|
4608 |
msgstr ""
|
4609 |
|
4610 |
+
#: front-end/login.php:311, front-end/login.php:332, front-end/recover.php:18, front-end/recover.php:312, front-end/extra-fields/extra-fields.php:93
|
4611 |
msgid "ERROR"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
+
#: front-end/login.php:314
|
4615 |
msgid "The password you entered is incorrect."
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: front-end/login.php:323
|
4619 |
msgid "Invalid username."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: front-end/login.php:321
|
4623 |
msgid "Invalid username or email."
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: front-end/login.php:319
|
4627 |
msgid "Invalid email."
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: front-end/login.php:327
|
4631 |
msgid "Password Lost and Found."
|
4632 |
msgstr ""
|
4633 |
|
4634 |
+
#: front-end/login.php:327, front-end/login.php:434
|
4635 |
msgid "Lost your password?"
|
4636 |
msgstr ""
|
4637 |
|
4638 |
+
#: front-end/login.php:332
|
4639 |
msgid "Both fields are empty."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: front-end/login.php:473, front-end/logout.php:26
|
4643 |
msgid "Log out of this account"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: front-end/login.php:473, front-end/logout.php:16
|
4647 |
msgid "Log out »"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: front-end/login.php:474
|
4651 |
msgid "You are currently logged in as %1$s. %2$s"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: front-end/login.php:401
|
4655 |
msgid "Username or Email"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
+
#: front-end/logout.php:16
|
4659 |
msgid "You are currently logged in as %s. "
|
4660 |
msgstr ""
|
4661 |
|
4662 |
+
#: front-end/recover.php:18
|
4663 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
+
#: front-end/recover.php:94
|
4667 |
msgid "Reset Password"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
+
#: front-end/recover.php:122
|
4671 |
msgid "Please enter your username or email address."
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: front-end/recover.php:123
|
4675 |
msgid "Username or E-mail"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: front-end/recover.php:118
|
4679 |
msgid "Please enter your email address."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: front-end/recover.php:126
|
4683 |
msgid "You will receive a link to create a new password via email."
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: front-end/recover.php:139
|
4687 |
msgid "Get New Password"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
+
#: front-end/recover.php:185
|
4691 |
msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
+
#: front-end/recover.php:188
|
4695 |
msgid "Password Reset from \"%1$s\""
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: front-end/recover.php:215
|
4699 |
msgid "You have successfully reset your password."
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: front-end/recover.php:217
|
4703 |
msgid "Password Successfully Reset for %1$s on \"%2$s\""
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: front-end/recover.php:235
|
4707 |
msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: front-end/recover.php:262
|
4711 |
msgid "You are already logged in. You can change your password on the edit profile form."
|
4712 |
msgstr ""
|
4713 |
|
4714 |
+
#: front-end/recover.php:404
|
4715 |
msgid "The password must not be empty!"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
+
#: front-end/recover.php:346, front-end/recover.php:429
|
4719 |
+
msgid "Invalid key!"
|
4720 |
+
msgstr ""
|
4721 |
+
|
4722 |
+
#: front-end/recover.php:351
|
4723 |
msgid "The entered passwords don't match!"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
+
#: front-end/recover.php:357, front-end/default-fields/password/password.php:52
|
4727 |
msgid "The password must have the minimum length of %s characters"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: front-end/recover.php:368
|
4731 |
msgid "Your password has been successfully changed!"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: front-end/recover.php:285
|
4735 |
msgid "The username entered wasn't found in the database!"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: front-end/recover.php:285
|
4739 |
msgid "Please check that you entered the correct username."
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: front-end/recover.php:328
|
4743 |
msgid "The email address entered wasn't found in the database!"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: front-end/recover.php:328
|
4747 |
msgid "Please check that you entered the correct email address."
|
4748 |
msgstr ""
|
4749 |
|
4750 |
+
#: front-end/recover.php:298
|
4751 |
msgid "Check your e-mail for the confirmation link."
|
4752 |
msgstr ""
|
4753 |
|
4754 |
+
#: front-end/recover.php:312
|
4755 |
msgid "There was an error while trying to send the activation link to %1$s!"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
+
#: front-end/recover.php:429
|
4759 |
msgid "ERROR:"
|
4760 |
msgstr ""
|
4761 |
|
|
|
|
|
|
|
|
|
4762 |
#: front-end/register.php:56
|
4763 |
msgid "Invalid activation key!"
|
4764 |
msgstr ""
|
4775 |
msgid "Your email was successfully confirmed."
|
4776 |
msgstr ""
|
4777 |
|
4778 |
+
#: front-end/register.php:125, features/email-confirmation/email-confirmation.php:653
|
4779 |
msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
|
4780 |
msgstr ""
|
4781 |
|
4783 |
msgid "This username is already activated!"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: front-end/register.php:71, features/email-confirmation/email-confirmation.php:452
|
4787 |
msgid "Could not create user!"
|
4788 |
msgstr ""
|
4789 |
|
5191 |
msgid "Your account has to be confirmed by an administrator before you can log in."
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: features/admin-approval/admin-approval.php:15, features/admin-approval/class-admin-approval.php:460, features/admin-approval/class-admin-approval.php:528
|
5195 |
msgid "Admin Approval"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: features/admin-approval/admin-approval.php:29, features/email-confirmation/email-confirmation.php:60
|
5199 |
msgid "Do you want to"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: features/admin-approval/admin-approval.php:52, features/admin-approval/admin-approval.php:100
|
5203 |
msgid "Your session has expired! Please refresh the page and try again."
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: features/admin-approval/admin-approval.php:89, features/admin-approval/admin-approval.php:135, features/email-confirmation/email-confirmation.php:134
|
5207 |
msgid "You either don't have permission for that action or there was an error!"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: features/admin-approval/admin-approval.php:84
|
5211 |
msgid "User successfully deleted!"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
+
#: features/admin-approval/admin-approval.php:78
|
5215 |
msgid "User successfully unapproved!"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: features/admin-approval/admin-approval.php:68, features/admin-approval/admin-approval.php:280
|
5219 |
msgid "User successfully approved!"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: features/admin-approval/admin-approval.php:131
|
5223 |
msgid "Users successfully deleted!"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
+
#: features/admin-approval/admin-approval.php:123
|
5227 |
msgid "Users successfully unapproved!"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: features/admin-approval/admin-approval.php:113
|
5231 |
msgid "Users successfully approved!"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: features/admin-approval/admin-approval.php:159
|
5235 |
msgid "Your account on %1$s has been unapproved!"
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: features/admin-approval/admin-approval.php:160, features/admin-approval/admin-approval.php:163
|
5239 |
msgid "unapproved"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: features/admin-approval/admin-approval.php:162
|
5243 |
msgid "An administrator has just unapproved your account on %1$s (%2$s)."
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: features/admin-approval/admin-approval.php:151
|
5247 |
msgid "Your account on %1$s has been approved!"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: features/admin-approval/admin-approval.php:152, features/admin-approval/admin-approval.php:155
|
5251 |
msgid "approved"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: features/admin-approval/admin-approval.php:154
|
5255 |
msgid "An administrator has just approved your account on %1$s (%2$s)."
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: features/admin-approval/admin-approval.php:193
|
5259 |
msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: features/admin-approval/admin-approval.php:228
|
5263 |
msgid "Your account has been successfully created!"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: features/admin-approval/admin-approval.php:296
|
5267 |
msgid "The approval link is not valid! Please <a href=\"%s\"> log in </a> to approve the user manually. "
|
5268 |
msgstr ""
|
5269 |
|
5287 |
msgid "Unapprove"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: features/admin-approval/class-admin-approval.php:167, modules/user-listing/userlisting.php:313, modules/user-listing/userlisting.php:819, modules/user-listing/userlisting.php:2372
|
5291 |
msgid "Firstname"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: features/admin-approval/class-admin-approval.php:168, modules/user-listing/userlisting.php:822, modules/user-listing/userlisting.php:2373
|
5295 |
msgid "Lastname"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: features/admin-approval/class-admin-approval.php:170, features/roles-editor/roles-editor.php:256, modules/user-listing/userlisting.php:160, modules/user-listing/userlisting.php:314, modules/user-listing/userlisting.php:849, modules/user-listing/userlisting.php:2377
|
5299 |
msgid "Role"
|
5300 |
msgstr ""
|
5301 |
|
5343 |
msgid "Conditional Rules"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: features/conditional-fields/conditional-fields.php:567
|
5347 |
msgid "This field has conditional logic enabled."
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: features/content-restriction/class-elementor-content-restriction.php:77, features/content-restriction/content-restriction-meta-box.php:19
|
5351 |
msgid "Profile Builder Content Restriction"
|
5352 |
msgstr ""
|
5353 |
|
5367 |
msgid "Allow users which have the specified role to see this content."
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: features/content-restriction/class-elementor-content-restriction.php:116, features/content-restriction/content-restriction-meta-box.php:120
|
5371 |
msgid "Restriction Messages"
|
5372 |
msgstr ""
|
5373 |
|
5379 |
msgid "Replace hidden content with the default messages from PB -> Settings -> Content Restriction, a custom message or an Elementor Template."
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: features/content-restriction/class-elementor-content-restriction.php:132, features/content-restriction/content-restriction-meta-box.php:126
|
5383 |
msgid "Enable Custom Messages"
|
5384 |
msgstr ""
|
5385 |
|
5403 |
msgid "Select Template"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: features/content-restriction/content-restriction-filtering.php:351
|
5407 |
msgid "You must be logged in to view the comments."
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: features/content-restriction/content-restriction-filtering.php:349
|
5411 |
msgid "Comments are restricted for your user role."
|
5412 |
msgstr ""
|
5413 |
|
5414 |
+
#: features/content-restriction/content-restriction-functions.php:47
|
5415 |
msgid "This content is restricted for your user role."
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: features/content-restriction/content-restriction-functions.php:45
|
5419 |
msgid "You must be logged in to view this content."
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: features/content-restriction/content-restriction-meta-box.php:33
|
5423 |
msgid "Display Options"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: features/content-restriction/content-restriction-meta-box.php:37, features/content-restriction/content-restriction.php:101
|
5427 |
msgid "Message"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: features/content-restriction/content-restriction-meta-box.php:37, features/content-restriction/content-restriction.php:106, modules/multiple-forms/edit-profile-forms.php:206, modules/multiple-forms/register-forms.php:230
|
5431 |
msgid "Redirect"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: features/content-restriction/content-restriction-meta-box.php:42, features/content-restriction/content-restriction.php:96
|
5435 |
msgid "Type of Restriction"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
+
#: features/content-restriction/content-restriction-meta-box.php:46
|
5439 |
msgid "Settings Default"
|
5440 |
msgstr ""
|
5441 |
|
5442 |
+
#: features/content-restriction/content-restriction-meta-box.php:58
|
5443 |
msgid "Display For"
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: features/content-restriction/content-restriction-meta-box.php:82
|
5447 |
msgid "Checking only \"Logged In Users\" will show this %s to all logged in users, regardless of user role."
|
5448 |
msgstr ""
|
5449 |
|
5450 |
+
#: features/content-restriction/content-restriction-meta-box.php:86
|
5451 |
msgid "Checking any user role will show this %s only to users that have one of those user roles assigned."
|
5452 |
msgstr ""
|
5453 |
|
5454 |
+
#: features/content-restriction/content-restriction-meta-box.php:93
|
5455 |
msgid "Restriction Redirect URL"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
+
#: features/content-restriction/content-restriction-meta-box.php:99
|
5459 |
msgid "Enable Custom Redirect URL"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: features/content-restriction/content-restriction-meta-box.php:103
|
5463 |
msgid "Check if you wish to add a custom redirect URL for this %s."
|
5464 |
msgstr ""
|
5465 |
|
5466 |
+
#: features/content-restriction/content-restriction-meta-box.php:110
|
5467 |
msgid "Custom Redirect URL"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
+
#: features/content-restriction/content-restriction-meta-box.php:114
|
5471 |
msgid "Add a URL where you wish to redirect users that do not have access to this %s and try to access it directly."
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: features/content-restriction/content-restriction-meta-box.php:130
|
5475 |
msgid "Check if you wish to add custom messages for this %s."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
+
#: features/content-restriction/content-restriction-meta-box.php:137
|
5479 |
msgid "Messages for logged-out users"
|
5480 |
msgstr ""
|
5481 |
|
5482 |
+
#: features/content-restriction/content-restriction-meta-box.php:140
|
5483 |
msgid "Messages for logged-in users"
|
5484 |
msgstr ""
|
5485 |
|
5486 |
+
#: features/content-restriction/content-restriction.php:63
|
5487 |
msgid "Content Restriction Settings"
|
5488 |
msgstr ""
|
5489 |
|
5490 |
+
#: features/content-restriction/content-restriction.php:85
|
5491 |
msgid "Enable Content Restriction"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: features/content-restriction/content-restriction.php:91
|
5495 |
msgid "Activate Content Restriction"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
+
#: features/content-restriction/content-restriction.php:109
|
5499 |
msgid "If you select \"Message\", the post's content will be protected by being replaced with a custom message."
|
5500 |
msgstr ""
|
5501 |
|
5502 |
+
#: features/content-restriction/content-restriction.php:110
|
5503 |
msgid "If you select \"Redirect\", the post's content will be protected by redirecting the user to the URL you specify. The redirect happens only when accessing a single post. On archive pages the restriction message will be displayed, instead of the content."
|
5504 |
msgstr ""
|
5505 |
|
5506 |
+
#: features/content-restriction/content-restriction.php:115, modules/custom-redirects/custom_redirects_admin.php:68, modules/custom-redirects/custom_redirects_admin.php:98, modules/custom-redirects/custom_redirects_admin.php:117, modules/custom-redirects/custom_redirects_admin.php:142
|
5507 |
msgid "Redirect URL"
|
5508 |
msgstr ""
|
5509 |
|
5510 |
+
#: features/content-restriction/content-restriction.php:120
|
5511 |
msgid "Message for logged-out users"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: features/content-restriction/content-restriction.php:125
|
5515 |
msgid "Message for logged-in users"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
+
#: features/content-restriction/content-restriction.php:130
|
5519 |
msgid "Restricted Posts Preview"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: features/content-restriction/content-restriction.php:145
|
5523 |
msgid "Show the first %s words of the post's content"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: features/content-restriction/content-restriction.php:153
|
5527 |
msgid "Show the content before the \"more\" tag"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
+
#: features/content-restriction/content-restriction.php:157
|
5531 |
msgid "Show a portion of the restricted post to logged-out users or users that are not allowed to see it."
|
5532 |
msgstr ""
|
5533 |
|
5575 |
msgid "All users have been successfully deleted"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
+
#: features/email-confirmation/class-email-confirmation.php:458, features/email-confirmation/class-email-confirmation.php:498, features/email-confirmation/email-confirmation.php:49
|
5579 |
msgid "Users with Unconfirmed Email Address"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: features/email-confirmation/email-confirmation.php:128
|
5583 |
msgid "Email notification resent to user"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
+
#: features/email-confirmation/email-confirmation.php:117
|
5587 |
msgid "The selected user couldn't be deleted"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: features/email-confirmation/email-confirmation.php:109
|
5591 |
msgid "There was an error performing that action!"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: features/email-confirmation/email-confirmation.php:408
|
5595 |
msgid "[%1$s] Activate %2$s"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
+
#: features/email-confirmation/email-confirmation.php:411
|
5599 |
msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
|
5600 |
msgstr ""
|
5601 |
|
5602 |
+
#: features/email-confirmation/email-confirmation.php:478
|
5603 |
msgid "There was an error while trying to activate the user"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: features/email-confirmation/email-confirmation.php:455
|
5607 |
msgid "That username is already activated!"
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: features/email-confirmation/email-confirmation.php:526, modules/email-customizer/admin-email-customizer.php:84
|
5611 |
msgid "A new subscriber has (been) registered!"
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: features/email-confirmation/email-confirmation.php:529
|
5615 |
msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
+
#: features/email-confirmation/email-confirmation.php:580
|
5619 |
msgid "[%1$s] Your new account information"
|
5620 |
msgstr ""
|
5621 |
|
5622 |
+
#: features/email-confirmation/email-confirmation.php:584, modules/email-customizer/email-customizer.php:583, modules/email-customizer/email-customizer.php:590, modules/email-customizer/email-customizer.php:604
|
5623 |
msgid "Your selected password at signup"
|
5624 |
msgstr ""
|
5625 |
|
5626 |
+
#: features/email-confirmation/email-confirmation.php:592
|
5627 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and the password: %3$s.<br/><br/>Access your account: %4$s "
|
5628 |
msgstr ""
|
5629 |
|
5630 |
+
#: features/email-confirmation/email-confirmation.php:590
|
5631 |
msgid "Welcome to %1$s!<br/><br/><br/>Your username is: %2$s and your password is the one that you have selected during registration.<br/><br/>Access your account: %3$s "
|
5632 |
msgstr ""
|
5633 |
|
5634 |
+
#: features/email-confirmation/email-confirmation.php:645
|
5635 |
msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
+
#: features/login-widget/login-widget.php:12
|
5639 |
msgid "This login widget lets you add a login form in the sidebar."
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: features/login-widget/login-widget.php:17
|
5643 |
msgid "Profile Builder Login Widget"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: features/login-widget/login-widget.php:65
|
5647 |
msgid "Title:"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
+
#: features/login-widget/login-widget.php:70
|
5651 |
msgid "After login redirect URL (optional):"
|
5652 |
msgstr ""
|
5653 |
|
5654 |
+
#: features/login-widget/login-widget.php:75
|
5655 |
msgid "Register page URL (optional):"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
+
#: features/login-widget/login-widget.php:80
|
5659 |
msgid "Password Recovery page URL (optional):"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
+
#: features/roles-editor/roles-editor.php:183
|
5663 |
msgid "Capability"
|
5664 |
msgstr ""
|
5665 |
|
5666 |
+
#: features/roles-editor/roles-editor.php:184
|
5667 |
msgid "You can't delete this capability from your role."
|
5668 |
msgstr ""
|
5669 |
|
5670 |
+
#: features/roles-editor/roles-editor.php:247, features/roles-editor/roles-editor.php:248
|
5671 |
msgid "Add New Role"
|
5672 |
msgstr ""
|
5673 |
|
5674 |
+
#: features/roles-editor/roles-editor.php:249
|
5675 |
msgid "Edit Role"
|
5676 |
msgstr ""
|
5677 |
|
5678 |
+
#: features/roles-editor/roles-editor.php:250
|
5679 |
msgid "New Role"
|
5680 |
msgstr ""
|
5681 |
|
5682 |
+
#: features/roles-editor/roles-editor.php:252
|
5683 |
msgid "View Role"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
+
#: features/roles-editor/roles-editor.php:253
|
5687 |
msgid "Search the Roles Editor"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
+
#: features/roles-editor/roles-editor.php:254
|
5691 |
msgid "No roles found"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: features/roles-editor/roles-editor.php:255
|
5695 |
msgid "No roles found in trash"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: features/roles-editor/roles-editor.php:297, features/roles-editor/roles-editor.php:300
|
5699 |
msgid "Role updated."
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: features/roles-editor/roles-editor.php:298
|
5703 |
msgid "Custom field updated."
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: features/roles-editor/roles-editor.php:299
|
5707 |
msgid "Custom field deleted."
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: features/roles-editor/roles-editor.php:302
|
5711 |
msgid "Role created."
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: features/roles-editor/roles-editor.php:303
|
5715 |
msgid "Role saved."
|
5716 |
msgstr ""
|
5717 |
|
5718 |
+
#: features/roles-editor/roles-editor.php:304
|
5719 |
msgid "Role submitted."
|
5720 |
msgstr ""
|
5721 |
|
5722 |
+
#: features/roles-editor/roles-editor.php:305
|
5723 |
msgid "Role scheduled for: <strong>%1$s</strong>"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
+
#: features/roles-editor/roles-editor.php:306
|
5727 |
msgid "Role draft updated."
|
5728 |
msgstr ""
|
5729 |
|
5730 |
+
#: features/roles-editor/roles-editor.php:365
|
5731 |
msgid "Role Name"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
+
#: features/roles-editor/roles-editor.php:366, modules/user-listing/userlisting.php:161
|
5735 |
msgid "Role Slug"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
+
#: features/roles-editor/roles-editor.php:367
|
5739 |
msgid "Capabilities"
|
5740 |
msgstr ""
|
5741 |
|
5742 |
+
#: features/roles-editor/roles-editor.php:368
|
5743 |
msgid "Users"
|
5744 |
msgstr ""
|
5745 |
|
5759 |
msgid "You can't delete your role."
|
5760 |
msgstr ""
|
5761 |
|
5762 |
+
#: features/roles-editor/roles-editor.php:1117
|
5763 |
msgid "Edit User Roles"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
+
#: features/upgrades/upgrades-functions.php:136, features/upgrades/upgrades-functions.php:93
|
5767 |
msgid "The usernames cannot be changed."
|
5768 |
msgstr ""
|
5769 |
|
6293 |
msgid "No Edit-profile Forms found in trash"
|
6294 |
msgstr ""
|
6295 |
|
6296 |
+
#: modules/multiple-forms/edit-profile-forms.php:135, modules/multiple-forms/register-forms.php:138, modules/user-listing/userlisting.php:2263
|
6297 |
msgid "Shortcode"
|
6298 |
msgstr ""
|
6299 |
|
6300 |
+
#: modules/multiple-forms/edit-profile-forms.php:155, modules/multiple-forms/register-forms.php:159, modules/user-listing/userlisting.php:2284
|
6301 |
msgid "(no title)"
|
6302 |
msgstr ""
|
6303 |
|
6304 |
+
#: modules/multiple-forms/edit-profile-forms.php:177, modules/multiple-forms/register-forms.php:180, modules/user-listing/userlisting.php:2306
|
6305 |
msgid "Use this shortcode on the page you want the form to be displayed:"
|
6306 |
msgstr ""
|
6307 |
|
6308 |
+
#: modules/multiple-forms/edit-profile-forms.php:181, modules/multiple-forms/register-forms.php:184, modules/user-listing/userlisting.php:2310
|
6309 |
msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
|
6310 |
msgstr ""
|
6311 |
|
6312 |
+
#: modules/multiple-forms/edit-profile-forms.php:175, modules/multiple-forms/register-forms.php:178, modules/user-listing/userlisting.php:2304
|
6313 |
msgid "The shortcode will be available after you publish this form."
|
6314 |
msgstr ""
|
6315 |
|
6316 |
+
#: modules/multiple-forms/edit-profile-forms.php:187, modules/multiple-forms/register-forms.php:190, modules/user-listing/userlisting.php:2343
|
6317 |
msgid "Form Shortcode"
|
6318 |
msgstr ""
|
6319 |
|
6469 |
msgid "Display name as"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
+
#: modules/user-listing/userlisting.php:162, modules/user-listing/userlisting.php:2371
|
6473 |
msgid "Registration Date"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
+
#: modules/user-listing/userlisting.php:163, modules/user-listing/userlisting.php:2376
|
6477 |
msgid "Number of Posts"
|
6478 |
msgstr ""
|
6479 |
|
6509 |
msgid "Search all Fields"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: modules/user-listing/userlisting.php:228, modules/user-listing/userlisting.php:2455
|
6513 |
msgid "Faceted Menus"
|
6514 |
msgstr ""
|
6515 |
|
6561 |
msgid "User not found"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
+
#: modules/user-listing/userlisting.php:843, modules/user-listing/userlisting.php:2383
|
6565 |
msgid "Jabber"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: modules/user-listing/userlisting.php:840, modules/user-listing/userlisting.php:2382
|
6569 |
msgid "Yim"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: modules/user-listing/userlisting.php:837, modules/user-listing/userlisting.php:2381
|
6573 |
msgid "Aim"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
+
#: modules/user-listing/userlisting.php:825, modules/user-listing/userlisting.php:2374
|
6577 |
msgid "Display Name"
|
6578 |
msgstr ""
|
6579 |
|
6581 |
msgid "First/Lastname"
|
6582 |
msgstr ""
|
6583 |
|
6584 |
+
#: modules/user-listing/userlisting.php:1130, modules/user-listing/userlisting.php:1611, modules/user-listing/userlisting.php:2090, modules/user-listing/userlisting.php:2575
|
6585 |
msgid "Search Users by All Fields"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
+
#: modules/user-listing/userlisting.php:1407
|
6589 |
msgid "Click here to see more information about this user."
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: modules/user-listing/userlisting.php:1404
|
6593 |
msgid "Click here to see more information about this user"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: modules/user-listing/userlisting.php:1404, modules/user-listing/userlisting.php:1404
|
6597 |
msgid "More..."
|
6598 |
msgstr ""
|
6599 |
|
6600 |
+
#: modules/user-listing/userlisting.php:1434
|
6601 |
msgid "View Map"
|
6602 |
msgstr ""
|
6603 |
|
6604 |
+
#: modules/user-listing/userlisting.php:1568, modules/user-listing/userlisting.php:1565
|
6605 |
msgid "Click here to go back"
|
6606 |
msgstr ""
|
6607 |
|
6608 |
+
#: modules/user-listing/userlisting.php:1565, modules/user-listing/userlisting.php:1565
|
6609 |
msgid "Back"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
+
#: modules/user-listing/userlisting.php:1630
|
6613 |
msgid "You don't have any pagination settings on this userlisting!"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
+
#: modules/user-listing/userlisting.php:1598
|
6617 |
msgid "«« First"
|
6618 |
msgstr ""
|
6619 |
|
6620 |
+
#: modules/user-listing/userlisting.php:1599
|
6621 |
msgid "« Prev"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
+
#: modules/user-listing/userlisting.php:1600
|
6625 |
msgid "Next » "
|
6626 |
msgstr ""
|
6627 |
|
6628 |
+
#: modules/user-listing/userlisting.php:1601
|
6629 |
msgid "Last »»"
|
6630 |
msgstr ""
|
6631 |
|
6632 |
+
#: modules/user-listing/userlisting.php:1679
|
6633 |
msgid "Show All"
|
6634 |
msgstr ""
|
6635 |
|
6636 |
+
#: modules/user-listing/userlisting.php:1753
|
6637 |
msgid "Choose..."
|
6638 |
msgstr ""
|
6639 |
|
6640 |
+
#: modules/user-listing/userlisting.php:1842
|
6641 |
msgid "No options available"
|
6642 |
msgstr ""
|
6643 |
|
6644 |
+
#: modules/user-listing/userlisting.php:1992
|
6645 |
msgid "Remove All Filters"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: modules/user-listing/userlisting.php:2107
|
6649 |
msgid "Search"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: modules/user-listing/userlisting.php:2108
|
6653 |
msgid "Clear Results"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: modules/user-listing/userlisting.php:2313, modules/user-listing/userlisting.php:2317
|
6657 |
msgid "Extra shortcode parameters"
|
6658 |
msgstr ""
|
6659 |
|
6660 |
+
#: modules/user-listing/userlisting.php:2315
|
6661 |
msgid "View all extra shortcode parameters"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: modules/user-listing/userlisting.php:2320
|
6665 |
msgid "displays users having a certain meta-value within a certain (extra) meta-field"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: modules/user-listing/userlisting.php:2321
|
6669 |
msgid "Example:"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: modules/user-listing/userlisting.php:2323
|
6673 |
msgid "Remember though, that the field-value combination must exist in the database."
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: modules/user-listing/userlisting.php:2329
|
6677 |
msgid "displays only the users that you specified the user_id for"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: modules/user-listing/userlisting.php:2335
|
6681 |
msgid "displays all users except the ones you specified the user_id for"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: modules/user-listing/userlisting.php:2398
|
6685 |
msgid "Random (very slow on large databases > 10K user)"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: modules/user-listing/userlisting.php:2401
|
6689 |
msgid "Ascending"
|
6690 |
msgstr ""
|
6691 |
|
6692 |
+
#: modules/user-listing/userlisting.php:2402
|
6693 |
msgid "Descending"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: modules/user-listing/userlisting.php:2407
|
6697 |
msgid "Roles to Display"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: modules/user-listing/userlisting.php:2407
|
6701 |
msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
|
6702 |
msgstr ""
|
6703 |
|
6704 |
+
#: modules/user-listing/userlisting.php:2408
|
6705 |
msgid "Number of Users/Page"
|
6706 |
msgstr ""
|
6707 |
|
6708 |
+
#: modules/user-listing/userlisting.php:2408
|
6709 |
msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
+
#: modules/user-listing/userlisting.php:2409
|
6713 |
msgid "Default Sorting Criteria"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
+
#: modules/user-listing/userlisting.php:2409
|
6717 |
msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: modules/user-listing/userlisting.php:2410
|
6721 |
msgid "Default Sorting Order"
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: modules/user-listing/userlisting.php:2410
|
6725 |
msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: modules/user-listing/userlisting.php:2411
|
6729 |
msgid "Avatar Size (All-userlisting)"
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: modules/user-listing/userlisting.php:2411
|
6733 |
msgid "Set the avatar size on the all-userlisting only"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: modules/user-listing/userlisting.php:2412
|
6737 |
msgid "Avatar Size (Single-userlisting)"
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#: modules/user-listing/userlisting.php:2412
|
6741 |
msgid "Set the avatar size on the single-userlisting only"
|
6742 |
msgstr ""
|
6743 |
|
6744 |
+
#: modules/user-listing/userlisting.php:2413
|
6745 |
msgid "Visible only to logged in users?"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: modules/user-listing/userlisting.php:2413
|
6749 |
msgid "The userlisting will only be visible only to the logged in users"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: modules/user-listing/userlisting.php:2414
|
6753 |
msgid "Visible to following Roles"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
+
#: modules/user-listing/userlisting.php:2414
|
6757 |
msgid "The userlisting will only be visible to the following roles"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
+
#: modules/user-listing/userlisting.php:2420
|
6761 |
msgid "Userlisting Settings"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
+
#: modules/user-listing/userlisting.php:2445
|
6765 |
msgid "Label"
|
6766 |
msgstr ""
|
6767 |
|
6768 |
+
#: modules/user-listing/userlisting.php:2445
|
6769 |
msgid "Choose the facet name that appears on the frontend"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
+
#: modules/user-listing/userlisting.php:2446
|
6773 |
msgid "Facet Type"
|
6774 |
msgstr ""
|
6775 |
|
6776 |
+
#: modules/user-listing/userlisting.php:2446
|
6777 |
msgid "Choose the facet menu type"
|
6778 |
msgstr ""
|
6779 |
|
6780 |
+
#: modules/user-listing/userlisting.php:2447
|
6781 |
msgid "Facet Meta"
|
6782 |
msgstr ""
|
6783 |
|
6784 |
+
#: modules/user-listing/userlisting.php:2447
|
6785 |
msgid "Choose the meta field for the facet menu. If you want to use a repeater meta or a meta outisde Profile Builder just type the value and press enter."
|
6786 |
msgstr ""
|
6787 |
|
6788 |
+
#: modules/user-listing/userlisting.php:2448
|
6789 |
msgid "Behaviour"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
+
#: modules/user-listing/userlisting.php:2448
|
6793 |
msgid "Narrow the results"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: modules/user-listing/userlisting.php:2448
|
6797 |
msgid "Expand the results"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: modules/user-listing/userlisting.php:2448
|
6801 |
msgid "Choose how multiple selections affect the results"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: modules/user-listing/userlisting.php:2449
|
6805 |
msgid "Visible choices"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: modules/user-listing/userlisting.php:2449
|
6809 |
msgid "Show a toggle link after this many choices. Leave blank for all"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: modules/user-listing/userlisting.php:2474
|
6813 |
msgid "Search Fields"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: modules/user-listing/userlisting.php:2474
|
6817 |
msgid "Choose the fields in which the Search Field will look in"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: modules/user-listing/userlisting.php:2479
|
6821 |
msgid "Search Settings"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: modules/user-listing/userlisting.php:2551
|
6825 |
msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#: modules/user-listing/userlisting.php:2551
|
6829 |
msgid "You can find it in the Profile Builder menu."
|
6830 |
msgstr ""
|
6831 |
|
6832 |
+
#: modules/user-listing/userlisting.php:2714
|
6833 |
msgid "No results found!"
|
6834 |
msgstr ""
|
6835 |
|
6845 |
msgid "Syncronize WCK Translation"
|
6846 |
msgstr ""
|
6847 |
|
6848 |
+
#: front-end/default-fields/blog-details/blog-details.php:65
|
6849 |
msgid "Yes, I'd like to create a new site"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
+
#: front-end/default-fields/blog-details/blog-details.php:72
|
6853 |
msgid "Your site url will look like this:<br>"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
+
#: front-end/default-fields/blog-details/blog-details.php:95
|
6857 |
msgid "Site URL slug"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
+
#: front-end/default-fields/blog-details/blog-details.php:118
|
6861 |
msgid "Site Title"
|
6862 |
msgstr ""
|
6863 |
|
6864 |
+
#: front-end/default-fields/blog-details/blog-details.php:140
|
6865 |
msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
|
6866 |
msgstr ""
|
6867 |
|
6868 |
+
#: front-end/default-fields/email/email.php:54, front-end/extra-fields/input-email/input-email.php:70
|
6869 |
msgid "You must enter a valid email address."
|
6870 |
msgstr ""
|
6871 |
|
6872 |
+
#: front-end/default-fields/email/email.php:69, front-end/default-fields/email/email.php:63
|
6873 |
msgid "This email is already reserved to be used soon."
|
6874 |
msgstr ""
|
6875 |
|
6876 |
+
#: front-end/default-fields/email/email.php:69, front-end/default-fields/email/email.php:63, front-end/default-fields/email/email.php:79, front-end/default-fields/email/email.php:97, front-end/default-fields/username/username.php:51, front-end/default-fields/username/username.php:67
|
6877 |
msgid "Please try a different one!"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
+
#: front-end/default-fields/email/email.php:79, front-end/default-fields/email/email.php:97
|
6881 |
msgid "This email is already in use."
|
6882 |
msgstr ""
|
6883 |
|
6884 |
+
#: front-end/default-fields/gdpr-delete/gdpr-delete.php:33
|
6885 |
msgid "Type %s to confirm deleting your account and all data associated with it:"
|
6886 |
msgstr ""
|
6887 |
|
6888 |
+
#: front-end/default-fields/gdpr-delete/gdpr-delete.php:34
|
6889 |
msgid "You did not type %s. Try again!"
|
6890 |
msgstr ""
|
6891 |
|
6892 |
+
#: front-end/default-fields/password-repeat/password-repeat.php:43, front-end/default-fields/password-repeat/password-repeat.php:39
|
6893 |
msgid "The passwords do not match"
|
6894 |
msgstr ""
|
6895 |
|
6896 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:55
|
6897 |
msgid "To use reCAPTCHA you must get an API key from"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:214
|
6901 |
msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
|
6902 |
msgstr ""
|
6903 |
|
6904 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:282
|
6905 |
msgid "To use reCAPTCHA you must get an API public key from:"
|
6906 |
msgstr ""
|
6907 |
|
6908 |
+
#: front-end/default-fields/recaptcha/recaptcha.php:580
|
6909 |
msgid "Click the BACK button on your browser, and try again."
|
6910 |
msgstr ""
|
6911 |
|
6912 |
+
#: front-end/default-fields/user-role/user-role.php:108
|
6913 |
msgid "As an administrator you cannot change your role."
|
6914 |
msgstr ""
|
6915 |
|
6916 |
+
#: front-end/default-fields/user-role/user-role.php:113, front-end/default-fields/user-role/user-role.php:99
|
6917 |
msgid "Only administrators can see this field on edit profile forms."
|
6918 |
msgstr ""
|
6919 |
|
6920 |
+
#: front-end/default-fields/user-role/user-role.php:150, front-end/default-fields/user-role/user-role.php:179, front-end/default-fields/user-role/user-role.php:174
|
6921 |
msgid "You cannot register this user role"
|
6922 |
msgstr ""
|
6923 |
|
6924 |
+
#: front-end/default-fields/username/username.php:51
|
6925 |
msgid "This username already exists."
|
6926 |
msgstr ""
|
6927 |
|
6928 |
+
#: front-end/default-fields/username/username.php:54, front-end/default-fields/username/username.php:62
|
6929 |
msgid "This username is invalid because it uses illegal characters."
|
6930 |
msgstr ""
|
6931 |
|
6932 |
+
#: front-end/default-fields/username/username.php:54, front-end/default-fields/username/username.php:62
|
6933 |
msgid "Please enter a valid username."
|
6934 |
msgstr ""
|
6935 |
|
6936 |
+
#: front-end/default-fields/username/username.php:67
|
6937 |
msgid "This username is already reserved to be used soon."
|
6938 |
msgstr ""
|
6939 |
|